How can I delay a chirp signal for signal processing?

2 ビュー (過去 30 日間)
Jiawei Li
Jiawei Li 2018 年 10 月 30 日
コメント済み: Jiawei Li 2018 年 11 月 2 日
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!

採用された回答

Naman Chaturvedi
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];
you can also use delayseq
  1 件のコメント
Jiawei Li
Jiawei Li 2018 年 11 月 2 日
Thany you very much! This is what i want!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTime-Frequency Analysis についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by