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!