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/residuez.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/residuez.sci')
-rw-r--r-- | macros/residuez.sci | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/macros/residuez.sci b/macros/residuez.sci index cee301f..2954bc1 100644 --- a/macros/residuez.sci +++ b/macros/residuez.sci @@ -10,7 +10,6 @@ // Email: toolbox@scilab.in function [r, p, f, m] = residuez(B, A, tol) - // RESIDUEZ - return residues, poles, and FIR part of B(z)/A(z) // // Let nb = length(b), na = length(a), and N=na-1 = no. of poles. @@ -33,7 +32,6 @@ // response. To obtain a decomposition in which the impulse response of // the IIR part R(z) starts after that of the FIR part F(z), use RESIDUED. // - //NOTE that the polynomials 'b' and 'a' should have real coefficients(because of the function 'filter' used in polyval) //Testcase //B=[1 1 1]; A=[1 -2 1]; |