MATLAB: How to plot graphs of sine and cosine functions on the same coordinate plane using matlab

graphgraphshow to plot graphs on matlab

Ploting graphs using matlab

Best Answer

use the 'hold on' command. For example:
t=1:0.1:10
plot(t,sin(t))
hold on;
plot(t,cos(t))