diff options
author | avinashlalotra | 2025-04-26 20:09:12 +0530 |
---|---|---|
committer | avinashlalotra | 2025-04-26 20:09:12 +0530 |
commit | ea7dcdba3b83696b97cc431ee050b58f9a0f3507 (patch) | |
tree | 49ea8ba898b88535c261546f4e3accbdf4c83bdf /macros/ellipord.sci | |
parent | 725d9ee2ddb254f57a896bb47e0e727759eb5901 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.tar.gz FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.tar.bz2 FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.zip |
formated source documentation pattern for generating docs
Diffstat (limited to 'macros/ellipord.sci')
-rw-r--r-- | macros/ellipord.sci | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/macros/ellipord.sci b/macros/ellipord.sci index f0c52a4..f279e2e 100644 --- a/macros/ellipord.sci +++ b/macros/ellipord.sci @@ -11,19 +11,16 @@ // Email: toolbox@scilab.in function [n, Wp] = ellipord(Wp, Ws, Rp, Rs) - //Minimum filter order of a digital elliptic or Cauer filter with the desired response characteristics. - + //Minimum filter order of a digital elliptic or Cauer filter with the desired response characteristics //Calling Sequence //[n] = ellipord(Wp, Ws, Rp, Rs) //[n, Wp] = ellipord(Wp, Ws, Rp, Rs) - //Parameters //Wp: scalar or vector of length 2 (passband edge(s)), all elements must be in the range [0,1] //Ws: scalar or vector of length 2 (stopband edge(s)), all elements must be in the range [0,1] //Rp: passband ripple in dB. //Rs: stopband attenuation in dB. //n: Minimum order of filter satisfying given specs. - //Description //This function computes the minimum filter order of an elliptic filter with the desired response characteristics. //Stopband frequency ws and passband frequency wp specify the the filter frequency band edges. |