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/tf2zpk.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/tf2zpk.sci')
-rw-r--r-- | macros/tf2zpk.sci | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/macros/tf2zpk.sci b/macros/tf2zpk.sci index f919316..ac18350 100644 --- a/macros/tf2zpk.sci +++ b/macros/tf2zpk.sci @@ -1,3 +1,4 @@ +function [zero, pole, gain] = tf2zpk(num, den) //tf2zpk Convert transfer function filter parameters to zero-pole-gain //form //Calling Syntax : @@ -8,8 +9,6 @@ //k=gain of the tf //b=vector containing the numerator coefficients of the transfer function in descending powers of s //a=vector containing the denominator coefficients of the transfer function in descending powers of s - -function [zero, pole, gain] = tf2zpk(num, den) if argn(2)< 2 | isempty(den) then den = 1; |