Filter löschen
Filter löschen

how to plot a two signal on same axes?

2 Ansichten (letzte 30 Tage)
Pramod
Pramod am 25 Mär. 2013
HI,
i am generating two signal and i want to plot on same axes.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Mär. 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);

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by