aboutsummaryrefslogtreecommitdiff
path: root/FEAST/FSToolbox/MIM.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/FSToolbox/MIM.m
parent49162177c5da0404d41f91f5f41006f0456babcd (diff)
remove FEAST from our source, as our changes went upstream
Diffstat (limited to 'FEAST/FSToolbox/MIM.m')
-rw-r--r--FEAST/FSToolbox/MIM.m17
1 files changed, 0 insertions, 17 deletions
diff --git a/FEAST/FSToolbox/MIM.m b/FEAST/FSToolbox/MIM.m
deleted file mode 100644
index 31695e4..0000000
--- a/FEAST/FSToolbox/MIM.m
+++ /dev/null
@@ -1,17 +0,0 @@
-function [selectedFeatures scoreVector] = MIM(k, data, labels)
-%function [selectedFeatures scoreVector] = MIM(k, data, labels)
-%
-%Mutual information Maximisation
-%
-% The license is in the license.txt provided.
-
-numf = size(data,2);
-classMI = zeros(numf,1);
-
-for n = 1 : numf
- classMI(n) = mi(data(:,n),labels);
-end
-
-[scoreVector index] = sort(classMI,'descend');
-
-selectedFeatures = index(1:k);