本文简要介绍 python 语言中 scipy.special.ellipj
的用法。
用法:
scipy.special.ellipj(u, m, out=None) = <ufunc 'ellipj'>#
雅可比椭圆函数
计算介于 0 和 1 之间的参数 m 和实参数 u 的雅可比椭圆函数。
- m: array_like
范围。
- u: array_like
争论。
- out: ndarray 的元组,可选
函数值的可选输出数组
- sn, cn, dn, ph: 标量或 ndarray 的 4 元组
返回的函数:
sn(u|m), cn(u|m), dn(u|m)
值酸碱度是这样的,如果u = 椭圆 (ph, m), 然后sn(u|m) = sin(ph)和cn(u|m) = cos(ph).
参数 ::
返回 ::
注意:
Cephes 的包装器[1]常规埃尔普.
这些函数是周期性的,实轴上的quarter-period 等于完整的椭圆积分 ellipk(m)。
与不完全椭圆积分的关系:如果 u = ellipkinc(phi,m),则 sn(u|m) = sin(phi),且 cn(u|m) = cos(phi)。 phi 称为 u 的幅值。
计算是通过arithmetic-geometric 均值算法进行的,除非 m 在 0 或 1 的 1e-9 内。在后一种情况下 m 接近 1,近似值仅适用于 phi < pi/2。
参考:
[1]Cephes 数学函数库,http://www.netlib.org/cephes/
相关用法
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.ellip_normal用法及代码示例
- Python SciPy special.ellipe用法及代码示例
- Python SciPy special.elliprd用法及代码示例
- Python SciPy special.ellip_harm用法及代码示例
- 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.ellipj。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。