필터 지우기
필터 지우기

HOW TO PLOT A CHIRP SIGNAL WITH BIDIRECTIONAL SWEEP

조회 수: 3 (최근 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 CenterFile Exchange에서 Signal Operations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by