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/decimate.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/decimate.sci')
-rw-r--r-- | macros/decimate.sci | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/macros/decimate.sci b/macros/decimate.sci index 9f8aeb5..149598e 100644 --- a/macros/decimate.sci +++ b/macros/decimate.sci @@ -1,17 +1,14 @@ function y = decimate(x, q, n, ftype) //Decimation — decrease sample rate by integer factor - //Calling Sequence //y = decimate(x,q) //y = decimate(x,q,n) // y = decimate (…, "fir") - //Parameters //x: input sequence //q: reduction factor //n : filter order //ftype: filter type : iir or fir - //Description //this is an octave function //y = decimate(x,q) reduces the sample rate of x, the input signal, by a factor of q. @@ -27,7 +24,6 @@ function y = decimate(x, q, n, ftype) //plot2d3((0:120),x(1:121)); //subplot(212); //plot2d3((0:30),y(1:31)); - //This will result in plots of original sequence v/s sample number and decimated sequence v/s sample number rhs = argn(2) |