How can I delay a chirp signal for signal processing?
6 次查看(过去 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!