How can i plot this exact graph?
Mostrar comentarios más antiguos
Respuestas (1)
KL
el 20 de Oct. de 2017
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 comentarios
Basit Nadeem
el 20 de Oct. de 2017
KL
el 20 de Oct. de 2017
Did you read the links I gave you??
Don't be lazy! This page has EXACTLY THE SAME PLOT you're asking for!
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!
