how to plot a two signal on same axes?

3 views (last 30 days)
HI,
i am generating two signal and i want to plot on same axes.

Accepted Answer

Walter Roberson
Walter Roberson on 25 Mar 2013
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);

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!