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!