Filter löschen
Filter löschen

parametrization of an ellipse

1 Ansicht (letzte 30 Tage)
abdulsamed kaymakci
abdulsamed kaymakci am 6 Dez. 2022
Beantwortet: Matt J am 6 Dez. 2022
I wrote this code to get elliptical eqn in the form of (x^2)/(a^2)+(y^2)/(b^2) = 1 from user and i want find a and b . exp:((x^2)/16+(y^2)/25=1)
ellipse_eqn = input('Enter for elliptical path: ','s') ;
ellipse = str2sym(ellipse_eqn)

Akzeptierte Antwort

Matt J
Matt J am 6 Dez. 2022
syms x y real
ellipse=(x^2)/16+(y^2)/25==1;
a=abs(solve([ellipse,y==0]).x(1))
a = 
4
b=abs(solve([ellipse,x==0]).y(1))
b = 
5

Weitere Antworten (0)

Kategorien

Mehr zu Mathematics finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by