scipy.special.ellipk#
- scipy.special.ellipk(m, out=None) = <ufunc 'ellipk'>#
第一类完全椭圆积分。
此函数定义为
\[K(m) = \int_0^{\pi/2} [1 - m \sin(t)^2]^{-1/2} dt\]- 参数:
- marray_like
椭圆积分的参数。
- outndarray,可选
函数值的可选输出数组
- 返回:
- K标量或ndarray
椭圆积分的值。
另请参阅
注释
为了在点 m = 1 附近获得更高的精度,请使用
ellipkm1
,此函数会调用该函数。关于 \(m\) 的参数化遵循 [1] 中第 17.2 节的参数化。关于互补参数 \(1 - m\)、模角 \(\sin^2(\alpha) = m\) 或模数 \(k^2 = m\) 的其他参数化也被使用,因此请注意选择正确的参数。
勒让德 K 积分与卡尔森的对称 R_F 函数的关系为 [2]
\[K(m) = R_F(0, 1-k^2, 1) .\]参考文献
[1]Milton Abramowitz and Irene A. Stegun, eds. Handbook of Mathematical Functions with Formulas, Graphs, and Mathematical Tables. New York: Dover, 1972.
[2]NIST Digital Library of Mathematical Functions. http://dlmf.nist.gov/, Release 1.0.28 of 2020-09-15. See Sec. 19.25(i) https://dlmf.nist.gov/19.25#i