diff options
author | bgtushar | 2017-11-23 19:30:44 +0530 |
---|---|---|
committer | bgtushar | 2017-11-23 19:30:44 +0530 |
commit | e9ab4b0b52db51be30f4ac3d07673c20b48da13c (patch) | |
tree | 8f4ce37de0a028350125acfce71cfe686e79ef24 /macros/ifht.sci | |
parent | 14ccddd315f0b97a78e965df1587835ac542e35a (diff) | |
parent | f66d58166a67d6bc89b2a674119410ddaee53d46 (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-e9ab4b0b52db51be30f4ac3d07673c20b48da13c.tar.gz FOSSEE-Signal-Processing-Toolbox-e9ab4b0b52db51be30f4ac3d07673c20b48da13c.tar.bz2 FOSSEE-Signal-Processing-Toolbox-e9ab4b0b52db51be30f4ac3d07673c20b48da13c.zip |
Merge
Diffstat (limited to 'macros/ifht.sci')
-rw-r--r-- | macros/ifht.sci | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/macros/ifht.sci b/macros/ifht.sci new file mode 100644 index 0000000..aacbd7a --- /dev/null +++ b/macros/ifht.sci @@ -0,0 +1,16 @@ +function m = ifht(d, varargin) +funcprot(0); +rhs= argn(2); +if(rhs<1 | rhs>3) +error("Wrong number of Inputs") +end + +select(rhs) + case 1 then + m= callOctave("ifht", d); + case 2 then + m= callOctave("ifht", d , varargin(1)); + case 3 then + m= callOctave("ifht", d , varargin(1),varargin(2) ); +end +endfunction |