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/circshift.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/circshift.sci')
-rw-r--r-- | macros/circshift.sci | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/macros/circshift.sci b/macros/circshift.sci index 3717cd3..9ca2c88 100644 --- a/macros/circshift.sci +++ b/macros/circshift.sci @@ -1,22 +1,17 @@ function R = circshift(M,d) - // Shifts array circularly - // CALLING SEQUENCES: // R = circshift(M, d) // circularly shifts by d(i) positions components of M along its #ith dimensions - // PARAMETERS: // M,R : vector or matrix of any data type // d : vector of integers. d(i) is the shift to be applied to the M's components // along its ith dimension. // for example d = [0 n] will shift element n position along column - // EXAMPLES: // M = [1 2 3 4]; // circshift(M, [0 1]) - //Output : // ans = // |