Viewing Time vs Frequency in Simulink

Hi everyone,
I'm building a simple simulink model to view the Time vs Frequency plot of a chirp signal. May i know which is the appropriate blockset to connect from the chirp signal output?

 채택된 답변

Paulo Silva
Paulo Silva 2011년 7월 8일

1 개 추천

This is the code just for MATLAB
t = 0:0.001:10; % 10 seconds @ 1kHz sample rate
fo = 10; f1 = 400; % Start at 10Hz, go up to 400Hz
y = chirp(t,fo,10,f1,'logarithmic');
spectrogram(y,256,200,256,1000,'yaxis')
Now if you really want to generate the chirp and see it just with simulink, put the chirp block on your model connect it to one to workspace block, make it output one array and choose the variable c.
Now go to simulink File, Model Properties, Callbacks and choose the StopFcn, paste the next come in the box
spectrogram(c,256,200,256,1000,'yaxis')
Now every time you run your simulation you get the frequency vs time plot automatically.

추가 답변 (1개)

Daniel  Tay
Daniel Tay 2011년 7월 8일

0 개 추천

Thanks for your help :)

카테고리

도움말 센터File Exchange에서 Schedule Model Components에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by