how can i plot this equation?
1 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Walter Roberson
2020-12-17
编辑:Walter Roberson
2020-12-17
h = @(t) [-t.^3-3*t+1, -asin(t)];
s = @(t) arrayfun(@(T) h(T) * [cos(2*pi*T) sin(2*pi*T)].', t);
fplot(s, [0 1])
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!