aboutsummaryrefslogtreecommitdiff
path: root/FEAST/MIToolbox/mi.m
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-03-18 15:59:19 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2014-03-18 15:59:19 -0400
commit97e1498130a72f0a081b42759fa386a7460bb75d (patch)
treebe897b69304081377ce39ce019a652eb73d5a9c1 /FEAST/MIToolbox/mi.m
parent49162177c5da0404d41f91f5f41006f0456babcd (diff)
remove FEAST from our source, as our changes went upstream
Diffstat (limited to 'FEAST/MIToolbox/mi.m')
-rw-r--r--FEAST/MIToolbox/mi.m20
1 files changed, 0 insertions, 20 deletions
diff --git a/FEAST/MIToolbox/mi.m b/FEAST/MIToolbox/mi.m
deleted file mode 100644
index 2fd8766..0000000
--- a/FEAST/MIToolbox/mi.m
+++ /dev/null
@@ -1,20 +0,0 @@
-function output = mi(X,Y)
-%function output = mi(X,Y)
-%X & Y can be matrices which are converted into a joint variable
-%before computation
-%
-%expects variables to be column-wise
-%
-%returns the mutual information between X and Y, I(X;Y)
-
-if (size(X,2)>1)
- mergedFirst = MIToolboxMex(3,X);
-else
- mergedFirst = X;
-end
-if (size(Y,2)>1)
- mergedSecond = MIToolboxMex(3,Y);
-else
- mergedSecond = Y;
-end
-[output] = MIToolboxMex(7,mergedFirst,mergedSecond);