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/upsamplefill.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/upsamplefill.sci')
-rw-r--r-- | macros/upsamplefill.sci | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/macros/upsamplefill.sci b/macros/upsamplefill.sci index 6173e1f..7192c34 100644 --- a/macros/upsamplefill.sci +++ b/macros/upsamplefill.sci @@ -13,10 +13,8 @@ function y = upsamplefill (x, v, c) //The second argument has the values in the vector w that are placed in between the elements of x. //The third argument, if true, means that w should be scalar and that each value in x repeated w times. //Examples - //1.upsamplefill([1,3,5],2,%f) //ans:1. 1. 1. 3. 3. 3. 5. 5. 5. - //2.upsamplefill([1,3,5],2,%t) //ans:1. 2. 3. 2. 5. 2. |