本文简要介绍 python 语言中 scipy.special.ellip_harm_2
的用法。
用法:
scipy.special.ellip_harm_2(h2, k2, n, p, s)#
椭球调和函数 F^p_n(l)
这些也称为第二类 Lame 函数,是 Lame 方程的解:
其中 和 是解对应的特征值(未返回)。
- h2: 浮点数
h**2
- k2: 浮点数
k**2
;应该大于h**2
- n: int
程度。
- p: int
顺序,范围可以在 [1,2n+1] 之间。
- s: 浮点数
协调
- F: 浮点数
谐波
参数 ::
返回 ::
注意:
第二类跛脚函数与第一类函数相关:
例子:
>>> from scipy.special import ellip_harm_2 >>> w = ellip_harm_2(5,8,2,1,10) >>> w 0.00108056853382
相关用法
- Python SciPy special.ellip_harm用法及代码示例
- Python SciPy special.ellip_normal用法及代码示例
- Python SciPy special.ellipj用法及代码示例
- Python SciPy special.ellipe用法及代码示例
- Python SciPy special.elliprd用法及代码示例
- Python SciPy special.elliprj用法及代码示例
- Python SciPy special.elliprc用法及代码示例
- Python SciPy special.elliprg用法及代码示例
- Python SciPy special.elliprf用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.expit用法及代码示例
- Python SciPy special.expm1用法及代码示例
- Python SciPy special.erfinv用法及代码示例
- Python SciPy special.erf用法及代码示例
- Python SciPy special.erf_zeros用法及代码示例
- Python SciPy special.erfi用法及代码示例
- Python SciPy special.erfc用法及代码示例
- Python SciPy special.eval_legendre用法及代码示例
- Python SciPy special.erfcx用法及代码示例
- Python SciPy special.expi用法及代码示例
- Python SciPy special.exp10用法及代码示例
- Python SciPy special.exp2用法及代码示例
- Python SciPy special.eval_chebyc用法及代码示例
- Python SciPy special.erfcinv用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.ellip_harm_2。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。