how do you plot signal like cos wt and 1/4 cycle time delayed version of signal on same axis
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
x=0:0.01:2*pi y=cos(x) plot(x,y)
need a additional 1/4 cycle time delayed signal on the same axis as x
0 comentarios
Respuestas (1)
Mischa Kim
el 27 de Mzo. de 2015
Amit, how about
x = 0:0.01:2*pi;
y = cos(x);
yd = cos(x + pi/2);
plot(x,y,x,yd)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!