how do you plot signal like cos wt and 1/4 cycle time delayed version of signal on same axis

Respuestas (1)

Amit, how about
x = 0:0.01:2*pi;
y = cos(x);
yd = cos(x + pi/2);
plot(x,y,x,yd)

1 comentario

Thank you for the above answer. Is there a alternative to this using a time delay function in matlab?

Iniciar sesión para comentar.

Preguntada:

el 27 de Mzo. de 2015

Comentada:

el 27 de Mzo. de 2015

Community Treasure Hunt

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

Start Hunting!

Translated by