How can i plot this exact graph?
古いコメントを表示

How can i plot this exact graph?
回答 (1 件)
KL
2017 年 10 月 20 日
What have you tried? Did you read the documentation?
Simple hint:
x = 0:stepsize:xmax;
y = sin(x);
y1 = ...;
y2 = ...;
plot(x,y)
hold on
plot(x,y1)
plot(x,y2)
2 件のコメント
Basit Nadeem
2017 年 10 月 20 日
KL
2017 年 10 月 20 日
Did you read the links I gave you??
Don't be lazy! This page has EXACTLY THE SAME PLOT you're asking for!
カテゴリ
ヘルプ センター および 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!