MATLAB: How to plot a two signal on same axes

axesplot

HI,
i am generating two signal and i want to plot on same axes.

Best Answer

plot( first_list_of_times, first_list_of_signal, second_list_of_times, second_list_of_signal )
or
plot( first_list_of_times, first_list_of_signal);
hold on
plot( second_list_of_times, second_list_of_signal);