scipy.special.ellipk¶
- scipy.special.ellipk(m)[source]¶
Computes the complete elliptic integral of the first kind.
This function is defined as
![K(m) = \int_0^{\pi/2} [1 - m \sin(t)^2]^{-1/2} dt](../_images/math/bb7546ba89fa53bc4a8321a018f931da0dd6d20b.png)
Parameters : m : array_like
The parameter of the elliptic integral.
Returns : K : array_like
Value of the elliptic integral.
Notes
For more precision around point m = 1, use ellipkm1.
