Calculate ellipse part arc lengths using ellipse parameter (theta1,theta2,a,b,​tolerance)

Calculates elliptic arc/ parts of ellipse lengths using infinite sum method given the ellipse
61 descargas
Actualizado 9 mar 2018

Ver licencia

Calculates the arclength of elliptic curve starts from theta1 and ends at theta2, using infinite series approach given in the reference at end of description
NOTE:
* if theta1 > theta2 arc length will be negative
* maximum number of iterations is set as 100, change from code if necessary
Inputs:
* theta1 and theta2 are defined such that;
defined in ellipse parameter such that for a point (x,y) on ellipse:
x = a*cos(theta1)
y = b*sin(theta2)
* a,b are semimajor and semiminor axes of ellipse, however function
supports entering them as vice versa
* tolerance sets the accuracy of calculation
Outputs:
* arcLen: arclength in units of the input a and b
* precision: difference of ellipse length with one higher iteration calculation
* n: number of iterations
referenced from:
http://pages.pacificcoast.net/~cazelais/250a/ellipse-length.pdf
example:
[arcLen, precision, n] = ellipseArcLength(0, 2*pi, 5,4,1e-5)
Author: Mehmet Burak Ekinci
Mail: elessar208@gmail.com

Citar como

Mehmet Burak Ekinci (2024). Calculate ellipse part arc lengths using ellipse parameter (theta1,theta2,a,b,tolerance) (https://www.mathworks.com/matlabcentral/fileexchange/66172-calculate-ellipse-part-arc-lengths-using-ellipse-parameter-theta1-theta2-a-b-tolerance), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2017b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Electrical Block Libraries en Help Center y MATLAB Answers.
Etiquetas Añadir etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Versión Publicado Notas de la versión
1.1.0.0

Title and description update

1.0.0.0