pEllipticInt | R Documentation |
Partial elliptic integral
pEllipticInt(x, saxes, n = 5)
x |
the x-coordinate. |
saxes |
a (2 \times 1) vector of the length of the ellipse semi-axes. |
n |
the number of iterations. |
Return the partial elliptic integral.
Van de Vel, H. (1969). On the series expansion method for Computing incomplete elliptic integrals of the first and second kinds, Math. Comp. 23, 61-69.
arcLengthEllipse
# Ellipse with semi-axes: a = 5, b= 2 saxes <- c(5,2) # 1 iteration pEllipticInt(3,saxes,n=1) # 5 iterations pEllipticInt(3,saxes,n=5) # 10 iterations pEllipticInt(3,saxes,n=10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.