how to plot a two signal on same axes?

 Respuesta aceptada

Walter Roberson
Walter Roberson el 25 de Mzo. de 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);

Más respuestas (0)

Categorías

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by