How can I delay a chirp signal for signal processing?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a question, how can i delay a signal?
Code:
t = 0:1/1e3:2;
signal = chirp(t,0,2,250);
signal_delay=? (for example delay is 1s)
Thanky you!
댓글 수: 0
채택된 답변
Naman Chaturvedi
2018년 11월 2일
t=1;
delay=t*1e3; %delay of 1 seconds
z=zeros(1,delay); %delay is the no. of delay samples
signal=[z,signal];
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Waveform Generation에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!