本文简要介绍 python 语言中 scipy.special.ellipe
的用法。
用法:
scipy.special.ellipe(m, out=None) = <ufunc 'ellipe'>#
第二类完全椭圆积分
该函数定义为
- m: array_like
定义椭圆积分的参数。
- out: ndarray,可选
函数值的可选输出数组
- E: 标量或 ndarray
椭圆积分的值。
参数 ::
返回 ::
注意:
Cephes 的包装器[1]常规埃尔佩.
对于 m > 0,计算使用近似值,
其中
和 是tenth-order 多项式。为了米 < 0, 关系被使用。
的参数化遵循 [2] 中第 17.2 节的参数化。还使用互补参数 、模角 或模数 方面的其他参数化,因此请注意选择正确的参数。
Legendre E 积分以多种方式与 Carlson 的对称 R_D 或 R_G 函数相关 [3]。例如,
参考:
[1]Cephes 数学函数库,http://www.netlib.org/cephes/
[2]Milton Abramowitz 和 Irene A. Stegun 合编。带有公式、图表和数学表格的数学函数手册。纽约:多佛,1972 年。
[3]NIST 数学函数数字 Library 。 http://dlmf.nist.gov/,2020-09-15 发布 1.0.28。见秒。 19.25(i) https://dlmf.nist.gov/19.25#i
例子:
此函数用于查找具有semi-major 轴 a 和 semi-minor 轴 b 的椭圆的周长。
>>> import numpy as np >>> from scipy import special
>>> a = 3.5 >>> b = 2.1 >>> e_sq = 1.0 - b**2/a**2 # eccentricity squared
然后使用以下方法找到周长:
>>> C = 4*a*special.ellipe(e_sq) # circumference formula >>> C 17.868899204378693
当 a 和 b 相同时(意味着偏心率为 0),这将减少为圆周。
>>> 4*a*special.ellipe(0.0) # formula for ellipse with a = b 21.991148575128552 >>> 2*np.pi*a # formula for circle of radius a 21.991148575128552
相关用法
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.ellip_normal用法及代码示例
- Python SciPy special.ellipj用法及代码示例
- 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.ellipe。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。