how to get cartesian equation from parametric equation
古いコメントを表示
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 件のコメント
darova
2020 年 5 月 26 日
What about this?
t = 0:0.1:3;
x = 10*t.^2;
y = ...
plot(x,y)
david carlson
2020 年 5 月 27 日
darova
2020 年 5 月 27 日
It's impossible
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Programming についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!