Skip to content

Commit

Permalink
feat: jnp.tan (#45)
Browse files Browse the repository at this point in the history
Signed-off-by: nstarman <nstarman@users.noreply.github.com>
  • Loading branch information
nstarman authored Apr 24, 2024
1 parent 3e0c0f8 commit 134795f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/quaxed/numpy/_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
"moveaxis",
"power",
"squeeze",
"tan",
"trace",
"vectorize",
]
Expand Down Expand Up @@ -79,6 +80,7 @@ def transfer_doc(func: T) -> T:
moveaxis = quaxify(jnp.moveaxis)
power = quaxify(jnp.power)
squeeze = quaxify(jnp.squeeze)
tan = quaxify(jnp.tan)
trace = quaxify(jnp.trace)


Expand Down

0 comments on commit 134795f

Please sign in to comment.