Generate simple chirp signal

9 views (last 30 days)
Sammy
Sammy on 30 Sep 2015
Commented: Star Strider on 24 Feb 2018
Hello,
How can i generate the simplest form of a chirp in matlab using the chirp function? what are good values for t, f0, t1, f1? Should I plot the frequency using fft? Thanks
y = chirp(t,f0,t1,f1)

Accepted Answer

Star Strider
Star Strider on 30 Sep 2015
The simplest is the Linear Chirp. ‘Good’ values for the arguments are whatever best satisfy the requirements for your generating the chirp. I would use the spectrogram function rather than the fft, although the one you choose depends on the information you want from it. Both are ‘correct’.
  2 Comments
Mohamed Ashraf
Mohamed Ashraf on 24 Feb 2018
What shold happpen when fft happens for chirp
Star Strider
Star Strider on 24 Feb 2018
The fft function is inappropriate for time-varying signal such as a chirp. Use the spectrogram function instead.

Sign in to comment.

More Answers (1)

Image Analyst
Image Analyst on 30 Sep 2015
I'm not sure what you're asking for. Why would one set of parameters be any simpler than another? Just experiment around with parameters until you get a set you like. If you want to plot the frequency with fft() or pwelch(), go ahead.

Tags

Community Treasure Hunt

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

Start Hunting!