aboutsummaryrefslogtreecommitdiff
path: root/FEAST/MIToolbox/h.m
diff options
context:
space:
mode:
Diffstat (limited to 'FEAST/MIToolbox/h.m')
-rw-r--r--FEAST/MIToolbox/h.m13
1 files changed, 0 insertions, 13 deletions
diff --git a/FEAST/MIToolbox/h.m b/FEAST/MIToolbox/h.m
deleted file mode 100644
index 8fd8999..0000000
--- a/FEAST/MIToolbox/h.m
+++ /dev/null
@@ -1,13 +0,0 @@
-function output = h(X)
-%function output = h(X)
-%X can be a matrix which is converted into a joint variable before calculation
-%expects variables to be column-wise
-%
-%returns the entropy of X, H(X)
-
-if (size(X,2)>1)
- mergedVector = MIToolboxMex(3,X);
-else
- mergedVector = X;
-end
-[output] = MIToolboxMex(4,mergedVector);