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/ncauer.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/ncauer.sci')
-rw-r--r-- | macros/ncauer.sci | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/macros/ncauer.sci b/macros/ncauer.sci index dad3025..453914e 100644 --- a/macros/ncauer.sci +++ b/macros/ncauer.sci @@ -11,25 +11,19 @@ // Email: toolbox@scilab.in function [Zz, Zp, Zg] = ncauer(Rp, Rs, n) //Analog prototype for Cauer filter (Cauer filter and elliptic filters are same). - //Calling Sequence //[Zz, Zp, Zg] = ncauer(Rp, Rs, n) - //Parameters //n: Filter Order //Rp: Peak-to-peak passband ripple in dB //Rs: Stopband attenuation in dB - //Description //It gives an analog prototype for Cauer filter of nth order, with a Peak-to-peak passband ripple of Rp dB and a stopband attenuation of Rs dB. - - //Examples //n = 5; //Rp = 5; //Rs = 5; //[Zz, Zp, Zg] = ncauer(Rp, Rs, n) - //Zz = // // 0.0000 + 2.5546i 0.0000 + 1.6835i -0.0000 - 2.5546i -0.0000 - 1.6835i |