Chirp wave/function
Chirp wave of function is a waveform that sweeps frequencies. It is a commonly employed waveform in audiology, radar/sonar and laser applications to perform rapid testing of equipment (in order to ascertain it works across all frequencies)
You can read more about it here.
MATLAB provides a command called chirp
but it is part of the Signal Processing Toolbox. So we are going to write our own.
Defining equations.
Based on the Wikipedia page we write a function that takes as input a starting frequency f0
, an ending frequency f1
and a time vector t
at whose beginning and ending these frequencies should be available.
Since we need to sweep across frequency range $[f_0, f_1]$ and have the rate of change of frequency be a linear function, we have to first determine the chirp rate c
, based on the values in the time vector provided.
$$c = \dfrac{f_1 - f_0}{t_f - t_0}$$
so that
$$f(t) = f_0 + ct$$
Next, we chose the sine wave to do our sweeping and followind the derivation in Wikipedia we get:
$$f(t) = \sin\left(2\pi(ct^2/2 + f_0t)\right)$$
We implement the function in a straightforward fashion
chirp (generic function with 1 method)
Let us examine a plot of it