|
1 | 1 | r"""
|
2 |
| -Miscellaneous Special Functions |
3 |
| -
|
4 |
| -AUTHORS: |
5 |
| -
|
6 |
| -- David Joyner (2006-13-06): initial version |
7 |
| -
|
8 |
| -- David Joyner (2006-30-10): bug fixes to pari wrappers of Bessel |
9 |
| - functions, hypergeometric_U |
10 |
| -
|
11 |
| -- William Stein (2008-02): Impose some sanity checks. |
12 |
| -
|
13 |
| -- David Joyner (2008-04-23): addition of elliptic integrals |
14 |
| -
|
15 |
| -- Eviatar Bach (2013): making elliptic integrals symbolic |
16 |
| -
|
17 |
| -- Eric Gourgoulhon (2022): add Condon-Shortley phase to spherical harmonics |
| 2 | +Miscellaneous special functions |
18 | 3 |
|
19 | 4 | This module provides easy access to many of Maxima and PARI's
|
20 | 5 | special functions.
|
|
104 | 89 |
|
105 | 90 | and the complete ones are obtained by taking `\phi =\pi/2`.
|
106 | 91 |
|
| 92 | +.. WARNING:: |
| 93 | +
|
| 94 | + SciPy's versions are poorly documented and seem less accurate than the |
| 95 | + Maxima and PARI versions. Typically they are limited by hardware floats |
| 96 | + precision. |
107 | 97 |
|
108 | 98 | REFERENCES:
|
109 | 99 |
|
|
118 | 108 |
|
119 | 109 | AUTHORS:
|
120 | 110 |
|
121 |
| -- David Joyner and William Stein |
| 111 | +- David Joyner (2006-13-06): initial version |
122 | 112 |
|
123 |
| -Added 16-02-2008 (wdj): optional calls to scipy and replace all |
124 |
| -'#random' by '...' (both at the request of William Stein) |
| 113 | +- David Joyner (2006-30-10): bug fixes to pari wrappers of Bessel |
| 114 | + functions, hypergeometric_U |
125 | 115 |
|
126 |
| -.. warning:: |
| 116 | +- William Stein (2008-02): Impose some sanity checks. |
127 | 117 |
|
128 |
| - SciPy's versions are poorly documented and seem less |
129 |
| - accurate than the Maxima and PARI versions; typically they are limited |
130 |
| - by hardware floats precision. |
| 118 | +- David Joyner (2008-02-16): optional calls to scipy and replace all ``#random`` by ``...`` |
| 119 | +
|
| 120 | +- David Joyner (2008-04-23): addition of elliptic integrals |
| 121 | +
|
| 122 | +- Eviatar Bach (2013): making elliptic integrals symbolic |
| 123 | +
|
| 124 | +- Eric Gourgoulhon (2022): add Condon-Shortley phase to spherical harmonics |
131 | 125 | """
|
132 | 126 |
|
133 | 127 | # ****************************************************************************
|
|
0 commit comments