how to get cartesian equation from parametric equation

13 visualizaciones (últimos 30 días)
david carlson
david carlson el 26 de Mayo de 2020
Respondida: Tommy el 27 de Mayo de 2020
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
david carlson
david carlson el 27 de Mayo de 2020
thanks , btw i wanted the cartesian equation not the plot
darova
darova el 27 de Mayo de 2020
It's impossible

Iniciar sesión para comentar.

Respuesta aceptada

Tommy
Tommy el 27 de Mayo de 2020
Maybe something like this?
syms t x y
eqns = [x == 10*t^2; y == 2*t^2];
out = subs(eqns(2), t, rhs(isolate(eqns(1), t)));
which results in:
>> out
out =
y == x/5

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Productos


Versión

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by