bundles / scipy 1.17.1 / scipy / special / _ellip_harm / ellip_harm_2
function
scipy.special._ellip_harm:ellip_harm_2
Signature
def ellip_harm_2 ( h2 , k2 , n , p , s ) Summary
Ellipsoidal harmonic functions F^p_n(l)
Extended Summary
These are also known as Lamé functions of the second kind, and are solutions to the Lamé equation:
where and is the eigenvalue (not returned) corresponding to the solutions.
Parameters
h2: floath**2k2: floatk**2; should be larger thanh**2n: intDegree.
p: intOrder, can range between [1,2n+1].
s: floatCoordinate
Returns
F: floatThe harmonic
Notes
Lamé functions of the second kind are related to the functions of the first kind:
Examples
from scipy.special import ellip_harm_2 w = ellip_harm_2(5,8,2,1,10)✓
w
✗See also
Aliases
-
scipy.special.ellip_harm_2