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/invimpinvar.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/invimpinvar.sci')
-rw-r--r-- | macros/invimpinvar.sci | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/macros/invimpinvar.sci b/macros/invimpinvar.sci index c854324..349d7d2 100644 --- a/macros/invimpinvar.sci +++ b/macros/invimpinvar.sci @@ -10,27 +10,22 @@ // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in -// Impulse invariant conversion from s to z domain -/* - [b_out, a_out] = invimpinvar (b, a, fs, tol) - [b_out, a_out] = invimpinvar (b, a, fs) - [b_out, a_out] = invimpinvar (b, a) - - Converts digital filter with coefficients b and a to analog, conserving impulse response. - - This function does the inverse of impinvar so that the following example should restore the original values of a and b. - - [b, a] = impinvar (b, a); - [b, a] = invimpinvar (b, a); - - If fs is not specified, or is an empty vector, it defaults to 1Hz. - - If tol is not specified, it defaults to 0.0001 (0.1%) - Dependencies - residue - inv_residue - */ function [b_out, a_out] = invimpinvar (b_in, a_in, fs, tol) +// Impulse invariant conversion from s to z domain +// Calling Sequence +// [b_out, a_out] = invimpinvar (b, a, fs, tol) +// [b_out, a_out] = invimpinvar (b, a, fs) +// [b_out, a_out] = invimpinvar (b, a) +// Description +// Converts digital filter with coefficients b and a to analog, conserving impulse response. +// This function does the inverse of impinvar so that the following example should restore the original values of a and b. +// [b, a] = impinvar (b, a); +// [b, a] = invimpinvar (b, a); +// If fs is not specified, or is an empty vector, it defaults to 1Hz. +// If tol is not specified, it defaults to 0.0001 (0.1%) +// See also +// residue +// inv_residue error("invimpinvar: Missing functionality not implemented in this release .Will be Available soon "); endfunction |