In this section, we will see the signal constructions on how to develop the functions.
Computing signal construction
How to do it…
- To aid the construction of signals with predetermined properties, the scipy.signal module has a nice collection of the most frequent one-dimensional waveforms in the literature—chirp and sweep_poly (for the frequency-swept cosine generator), gausspulse (a Gaussian modulated sinusoid), and sawtooth and square (for the waveforms with those names).
- They all take as their main parameter a one-dimensional ndarray representing the times at which the signal is to be evaluated. Other parameters control the design of the signal according to frequency or time constraints.
- Let's take a...