How to plot graphs of sine and cosine functions on the same coordinate plane using matlab
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Shewit Weldejewergs
el 19 de Feb. de 2020
Comentada: Mil Shastri
el 10 de Mzo. de 2020
Ploting graphs using matlab
0 comentarios
Respuesta aceptada
Mil Shastri
el 19 de Feb. de 2020
use the 'hold on' command. For example:
t=1:0.1:10
plot(t,sin(t))
hold on;
plot(t,cos(t))
2 comentarios
Mil Shastri
el 10 de Mzo. de 2020
You are very welcome.
In fact, if anyone wants to learn more about plotting, I'd recommend looking at Section 9 on Plotting of the MATLAB onramp https://www.mathworks.com/learn/tutorials/matlab-onramp.html
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!