필터 지우기
필터 지우기

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

조회 수: 1 (최근 30일)
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

답변 (1개)

Mischa Kim
Mischa Kim 2015년 3월 27일
Amit, how about
x = 0:0.01:2*pi;
y = cos(x);
yd = cos(x + pi/2);
plot(x,y,x,yd)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by