Borrar filtros
Borrar filtros

Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

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

2 visualizaciones (últimos 30 días)
raphael reis nunes
raphael reis nunes el 22 de Feb. de 2017
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
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'

Respuestas (1)

dbmn
dbmn el 22 de Feb. de 2017
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');

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by