how to get cartesian equation from parametric equation

2 ビュー (過去 30 日間)
david carlson
david carlson 2020 年 5 月 26 日
回答済み: Tommy 2020 年 5 月 27 日
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 件のコメント
david carlson
david carlson 2020 年 5 月 27 日
thanks , btw i wanted the cartesian equation not the plot
darova
darova 2020 年 5 月 27 日
It's impossible

サインインしてコメントする。

採用された回答

Tommy
Tommy 2020 年 5 月 27 日
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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by