how to get cartesian equation from parametric equation
Mostrar comentarios más antiguos
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 comentarios
darova
el 26 de Mayo de 2020
What about this?
t = 0:0.1:3;
x = 10*t.^2;
y = ...
plot(x,y)
david carlson
el 27 de Mayo de 2020
darova
el 27 de Mayo de 2020
It's impossible
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Programming en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!