Changing the amplitude of a chirp signal

7 views (last 30 days)
Yaly Mevorach
Yaly Mevorach on 7 Jan 2023
Answered: Voss on 7 Jan 2023
How can I change the parameters of a chirp signal? like the amplitude?

Answers (1)

Voss
Voss on 7 Jan 2023
The documentation for chirp explains how to set the parameters of a chirp signal:
To set the amplitude, multiply the signal by a constant, e.g.:
% generate a chirp signal:
my_signal = chirp(t,f0,t1,f1);
% generate a chirp signal with 2 times the amplitude:
my_other_signal = 2*chirp(t,f0,t1,f1);

Community Treasure Hunt

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

Start Hunting!