how to get cartesian equation from parametric equation
Afficher commentaires plus anciens
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 commentaires
darova
le 26 Mai 2020
What about this?
t = 0:0.1:3;
x = 10*t.^2;
y = ...
plot(x,y)
david carlson
le 27 Mai 2020
darova
le 27 Mai 2020
It's impossible
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Mathematics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!