Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Merge branch 'u/rws/ticket/14996' of trac.sagemath.org:sage into u/ts…
Browse files Browse the repository at this point in the history
…crim/14996

* 'u/rws/ticket/14996' of trac.sagemath.org:sage:
  Trac #14996: Rewriting Jacobi elliptic function code, new numeric evaluation, Jacobi amplitude function
  • Loading branch information
Travis Scrimshaw committed Apr 10, 2014
2 parents 37c8a8c + a6ab7a4 commit db1980b
Show file tree
Hide file tree
Showing 5 changed files with 1,723 additions and 187 deletions.
1 change: 1 addition & 0 deletions src/doc/en/reference/functions/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Functions
sage/functions/orthogonal_polys
sage/functions/other
sage/functions/special
sage/functions/jacobi
sage/functions/bessel
sage/functions/exp_integral
sage/functions/wigner
Expand Down
11 changes: 9 additions & 2 deletions src/sage/functions/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,20 @@
from special import (hypergeometric_U,
spherical_bessel_J, spherical_bessel_Y,
spherical_hankel1, spherical_hankel2,
spherical_harmonic, jacobi,
inverse_jacobi,
spherical_harmonic,
lngamma, error_fcn, elliptic_e,
elliptic_f, elliptic_ec, elliptic_eu,
elliptic_kc, elliptic_pi, elliptic_j,
airy_ai, airy_bi)

from jacobi import (jacobi, inverse_jacobi, jacobi_nd, jacobi_ns, jacobi_nc,
jacobi_dn, jacobi_ds, jacobi_dc, jacobi_sn, jacobi_sd,
jacobi_sc, jacobi_cn, jacobi_cd, jacobi_cs, jacobi_am,
inverse_jacobi_nd, inverse_jacobi_ns, inverse_jacobi_nc,
inverse_jacobi_dn, inverse_jacobi_ds, inverse_jacobi_dc,
inverse_jacobi_sn, inverse_jacobi_sd, inverse_jacobi_sc,
inverse_jacobi_cn, inverse_jacobi_cd, inverse_jacobi_cs)

from orthogonal_polys import (chebyshev_T,
chebyshev_U,
gen_laguerre,
Expand Down

0 comments on commit db1980b

Please sign in to comment.