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/bitrevorder.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/bitrevorder.sci')
-rw-r--r-- | macros/bitrevorder.sci | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/macros/bitrevorder.sci b/macros/bitrevorder.sci index 7ffe2ec..fa01ec7 100644 --- a/macros/bitrevorder.sci +++ b/macros/bitrevorder.sci @@ -10,21 +10,17 @@ // Organization: FOSSEE, IIT Bombay // Email: toolbox@scilab.in function [y, i] = bitrevorder (x) - // Returns input data in bit-reversed order // // Calling Sequence //[y,i] = bitrevorder(x) //y = bitrevorder(x) - // Parameters //x: Vector of real or complex values //y: input vector in bit reverse order //i: indices - // Description //This function returns the input data after reversing the bits of the indices and reordering the elements of the input array. - // Examples //x = [%i,1,3,6*%i] ; //[y i]=bitrevorder(x) @@ -37,6 +33,7 @@ function [y, i] = bitrevorder (x) // i 3. 1. 6.i // Dependencies // digitrevorder + funcprot(0); [nargout, nargin] = argn() ; |