HOW TO PLOT A CHIRP SIGNAL WITH BIDIRECTIONAL SWEEP

4 ビュー (過去 30 日間)
raj
raj 2012 年 3 月 8 日
in matlab only linear chirp with uni directional sweep is present but i want a chirp with bidirectional sweep how is possible to obtain one???

採用された回答

Honglei Chen
Honglei Chen 2012 年 3 月 8 日
You can connect two signals together. Say you want to sweep from 0 to 100 Hz in 1 seconds and then sweep down.
T1 = 1;
F0 = 0;
F1 = 100;
T = 0:0.001:0.999
Y = [chirp(T,F0,T1,F1) chirp(T,F1,T1,F0)]
plot(0:0.001:1.999,Y)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSignal Attributes and Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by