summaryrefslogtreecommitdiff
path: root/fht.sci
diff options
context:
space:
mode:
Diffstat (limited to 'fht.sci')
-rw-r--r--fht.sci16
1 files changed, 0 insertions, 16 deletions
diff --git a/fht.sci b/fht.sci
deleted file mode 100644
index c6fd1bd..0000000
--- a/fht.sci
+++ /dev/null
@@ -1,16 +0,0 @@
-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