{ } Raw JSON

bundles / scipy latest / scipy / special / _ellip_harm / ellip_harm_2

function

scipy.special._ellip_harm:ellip_harm_2

source: /scipy/special/_ellip_harm.py :105

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 : 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].

s : float

Coordinate

Returns

F : float

The 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

ellip_harm
ellip_normal

Aliases

  • scipy.special.ellip_harm_2