How do I graph a vector with one variable
古いコメントを表示
How do I graph a vector(y) with one variable x and also specify a certain domain for x ex: 
4 件のコメント
Jan
2022 年 3 月 26 日
What are i and j?
Youssef Mohamed Ahmed Mahmoud Abo El Ezz
2022 年 3 月 27 日
Jan
2022 年 3 月 28 日
@Youssef Mohamed Ahmed Mahmoud Abo El Ezz: You have removed the contents of the question after an answer has been given. This is considered to be impolite in this forum, because it does not respect the time and effort of the persons who help you.
回答 (1 件)
t = 0:0.1:10;
y = t.^3/3 - t + 4;
z = 9/2*t.^2 + 9;
figure(1)
plot3(y,z,t)
%or
figure(2)
quiver(t,zeros(1,numel(t)),y,z,0)
カテゴリ
ヘルプ センター および File Exchange で 2-D and 3-D Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!