how to get cartesian equation from parametric equation
Ältere Kommentare anzeigen
i have x= 10*t^2 and y=2*t^2 (parametric equation)
how can i make matlab program that get the cartesian equation ( x=5*y ) ?
3 Kommentare
darova
am 26 Mai 2020
What about this?
t = 0:0.1:3;
x = 10*t.^2;
y = ...
plot(x,y)
david carlson
am 27 Mai 2020
darova
am 27 Mai 2020
It's impossible
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Programming finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!