Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Cannot make several plots in one graph with the command "hold on"
1 回表示 (過去 30 日間)
古いコメントを表示
Hello,
as a total beginner in MatLab, I tried to create a graph with several plots on it using the command hold on.
Like :
x1 = linspace(1,10,10); f1 = x1.^2/2.*sin(x1);
x2 = linspace(1,20,20); f2 = x2.^2/2.*sin(x2);
x3 = linspace(1,100,100); f3 = x3.^2/2.*sin(x3);
plot(x1, f1, 'b');
hold on;
plot(x2, f2, 'g');
plot(x3, f3, 'r');
But the only plot that stays is the last one. Need help please !
Thanks'
0 件のコメント
回答 (1 件)
dbmn
2017 年 2 月 22 日
funny, all the 3 lines stay exactly on each other, that way you dont see the other two lines. So everything is working as it should.
You can see the plots by specifying a marker
plot(x1, f1, 'bo');
hold on;
plot(x2, f2, 'g*');
plot(x3, f3, 'r');
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!