i am generating two signal and i want to plot on same axes.
Prashant Kumar answered .
2025-11-20
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);