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/idst1.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/idst1.sci')
-rw-r--r-- | macros/idst1.sci | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/macros/idst1.sci b/macros/idst1.sci index f7fdc6d..9b6d3e4 100644 --- a/macros/idst1.sci +++ b/macros/idst1.sci @@ -1,19 +1,20 @@ -/*Description - This function computes the inverse type I discrete sine transform of X If N is given, - then X is padded or trimmed to length N before computing the transform. - If X is a matrix, compute the transform along the columns of the the matrix. -Calling Sequence - Y = idst1(X) - Y = idst1(X, N) -Parameters - X: Matrix or integer - N: If N is given, then X is padded or trimmed to length N before computing the transform. -Examples - idst1([1,3,6]) - ans = - 3.97487 -2.50000 0.97487 */ function x = idst1 (y, n) - nargin=argn(2) +// Description +// This function computes the inverse type I discrete sine transform of X If N is given, +// then X is padded or trimmed to length N before computing the transform. +// If X is a matrix, compute the transform along the columns of the the matrix. +// Calling Sequence +// Y = idst1(X) +// Y = idst1(X, N) +// Parameters +// X: Matrix or integer +// N: If N is given, then X is padded or trimmed to length N before computing the transform. +// Examples +// idst1([1,3,6]) +// ans = +// 3.97487 -2.50000 0.97487 + + nargin=argn(2) if (nargin < 1 || nargin > 2) error("invalid input arguments") end |