This is documentation for an old release of SciPy (version 0.17.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.special.ellip_normal¶
- scipy.special.ellip_normal(h2, k2, n, p)[source]¶
Ellipsoidal harmonic normalization constants gamma^p_n
The normalization constant is defined as
γpn=8∫h0dx∫khdy(y2−x2)(Epn(y)Epn(x))2√((k2−y2)(y2−h2)(h2−x2)(k2−x2)Parameters: h2 : float
h**2
k2 : float
k**2; should be larger than h**2
n : int
Degree.
p : int
Order, can range between [1,2n+1].
Returns: gamma : float
The normalization constant γpn
See also
Notes
New in version 0.15.0.
Examples
>>> from scipy.special import ellip_normal >>> w = ellip_normal(5,8,3,7) >>> w 1723.38796997