Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Not getting any plots on my graph
2 ビュー (過去 30 日間)
古いコメントを表示
My graph using parametric equations isn't showing any plots, just an empty graph and I'm unsure why.
t=linspace(0, 20);
x=4 + sqrt(t);
y=5+cos(2*t)/(t+1);
plot(x,y)
xlabel 'x displacement'
ylabel 'y displacement'
1 件のコメント
per isakson
2017 年 12 月 15 日
編集済み: per isakson
2017 年 12 月 15 日
Replace
y=5+cos(2*t)/(t+1);
by
y=5+cos(2*t)./(t+1);
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!