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
59 Downloads
Aktualisiert 9. Mär 2018

Lizenz anzeigen

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

Zitieren als

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. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2017b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Electrical Block Libraries finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.1.0.0

Title and description update

1.0.0.0