フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Cannot make several plots in one graph with the command "hold on"

2 ビュー (過去 30 日間)
raphael reis nunes
raphael reis nunes 2017 年 2 月 22 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
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'

回答 (1 件)

dbmn
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');

この質問は閉じられています。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by