diff options
author | bgtushar | 2017-11-09 20:51:40 +0530 |
---|---|---|
committer | bgtushar | 2017-11-09 20:51:40 +0530 |
commit | 3f916032cc0b2efdeafb838dd10e1141ead2cb27 (patch) | |
tree | ced7bdb873fc6b84f0763ccf49e1e28403b9826b /fht.sci | |
parent | 487df8d5650f198857d5dd5635f9493fa8c06e8f (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-3f916032cc0b2efdeafb838dd10e1141ead2cb27.tar.gz FOSSEE-Signal-Processing-Toolbox-3f916032cc0b2efdeafb838dd10e1141ead2cb27.tar.bz2 FOSSEE-Signal-Processing-Toolbox-3f916032cc0b2efdeafb838dd10e1141ead2cb27.zip |
cceps, fht, idct1, idct2, idst1, sigmoid, xcov1
Diffstat (limited to 'fht.sci')
-rw-r--r-- | fht.sci | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +function y=fht(d,n,dim) +funcprot(0); +rhs=argn(2); +if(rhs<1 | rhs>3) + error("Wrong number of input arguments.") +end +select(rhs) +case 1 then + y=callOctave("fht",d) +case 2 then + y=callOctave("fht",d,n) +case 3 then + y=callOctave("fht",d,n,dim) +end + +endfunction |