Skip to content

Commit

Permalink
[feat] Added remaining autograd scipy special functions to the special
Browse files Browse the repository at this point in the history
module.
  • Loading branch information
fjosw committed Jan 7, 2024
1 parent e07de53 commit cf4589c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyerrors/special.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
from autograd.scipy.special import j0, y0, j1, y1, jn, yn, i0, i1, iv, ive


__all__ = ["kn", "j0", "y0", "j1", "y1", "jn", "yn", "i0", "i1", "iv", "ive"]
__all__ = ["beta", "betainc", "betaln",
"polygamma", "psi", "digamma", "gamma", "gammaln", "gammainc", "gammaincc", "gammasgn", "rgamma", "multigammaln",
"kn", "j0", "y0", "j1", "y1", "jn", "yn", "i0", "i1", "iv", "ive",
"erf", "erfc", "erfinc", "erfcinv", "logit", "expit", "logsumsexp"]


@primitive
Expand Down

0 comments on commit cf4589c

Please sign in to comment.