diff options
author | Rashmi Patankar | 2025-04-30 15:01:49 +0530 |
---|---|---|
committer | GitHub | 2025-04-30 15:01:49 +0530 |
commit | 0495a12104d8466509769fc34271757f00577709 (patch) | |
tree | cb208dd421d39051d85f4ef0476c9208ef2c41ab /macros/chirp.sci | |
parent | a0bff158d21c2c12a12781bc5019f3a45bd866b2 (diff) | |
parent | ec6379e7494ff4ca2dc7c7524013d109be450bae (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-0495a12104d8466509769fc34271757f00577709.tar.gz FOSSEE-Signal-Processing-Toolbox-0495a12104d8466509769fc34271757f00577709.tar.bz2 FOSSEE-Signal-Processing-Toolbox-0495a12104d8466509769fc34271757f00577709.zip |
Fixed Failing test scripts
Diffstat (limited to 'macros/chirp.sci')
-rw-r--r-- | macros/chirp.sci | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/macros/chirp.sci b/macros/chirp.sci index c8acdeb..7c74cff 100644 --- a/macros/chirp.sci +++ b/macros/chirp.sci @@ -12,7 +12,6 @@ function [y] = chirp(t,f0,t1,f1,form,phase) //This function evaluates a chirp signal at time t. - //Calling Sequence //y = chirp(t) //y = chirp(t, f0) @@ -20,7 +19,6 @@ function [y] = chirp(t,f0,t1,f1,form,phase) //y = chirp(t, f0, t1, f1) //y = chirp(t, f0, t1, f1, frm) //y = chirp(t, f0, t1, f1, frm, phse) - //Parameters //t: a vector of times to evaluate the chirp signal //f0: the frequency at t=0 [default value = 0 Hz] @@ -29,12 +27,10 @@ function [y] = chirp(t,f0,t1,f1,form,phase) //frm: string value, takes in "linear", "quadratic", "logarithmic" [default value = "linear"] //phse: phase shift at t=0. [default value = 0] //y: chirp signal value corresponding to t. - //Description //This function evaluates a chirp signal at time t. A chirp signal is a frequency swept cosine wave. //The first argument is a vector of times to evaluate the chirp signal, second argument is the frequency at t=0, third argument is time t1 and fourth argument is frequency at t1. //The fifth argument is the form which takes in values "linear", "quadratic" and "logarithmic", the sixth argument gives the phase shift at t=0. - //Examples //t = [4,3,2,1]; //f0 = 4; |