1/f^2 chirp generation

1 view (last 30 days)
Stephen
Stephen on 22 Aug 2015
Answered: Star Strider on 23 Aug 2015
Is it possible to generate a chirp with frequency dependence of f(t) = 1/t^2?
  2 Comments
Star Strider
Star Strider on 23 Aug 2015
A ‘chirp’ is defined as frequency varying as a function of time, f(t).
How would you define a 1/f² chirp?
Stephen
Stephen on 23 Aug 2015
Thank you for catching that nonsense, the question has been updated.

Sign in to comment.

Accepted Answer

Star Strider
Star Strider on 23 Aug 2015
Not necessarily nonsense, since instrument (thermal) and other noise has a 1/f or 1/f² characteristic.
This might do what you want, but it’s not very interesting:
t = linspace(0.1*pi, 20*pi, 1000);
f = sin(1./(t.^2));
figure(1)
spectrogram(f)
Experiment with it to get the result you want.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!