I need three lines on one graph
Mostrar comentarios más antiguos
x=0:0.3:30;semilogy(x,exp(x))
coordinates x1= 0, 0,5
x2 = 0, 001
x3=0,001 - another line
Respuestas (3)
TADA
el 11 de Dic. de 2018
x=0:0.3:30;
hold off;
semilogy(x,exp(x));
hold on;
semilogy(x,2*exp(x));
semilogy(x,10*exp(x));
Yuriy Gamiy
el 11 de Dic. de 2018
0 votos
1 comentario
TADA
el 11 de Dic. de 2018
Sorry, I don't understand, what do you want to put in your Y axis?
what is that Y vector you wrote?
Yuriy Gamiy
el 11 de Dic. de 2018
0 votos
1 comentario
TADA
el 11 de Dic. de 2018
If what you want is to change the label,
you can use
ylabel('something something');
and name it whatever you want
Categorías
Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!