diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-18 15:59:19 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-18 15:59:19 -0400 |
commit | 97e1498130a72f0a081b42759fa386a7460bb75d (patch) | |
tree | be897b69304081377ce39ce019a652eb73d5a9c1 /FEAST/MIToolbox/h.m | |
parent | 49162177c5da0404d41f91f5f41006f0456babcd (diff) |
remove FEAST from our source, as our changes went upstream
Diffstat (limited to 'FEAST/MIToolbox/h.m')
-rw-r--r-- | FEAST/MIToolbox/h.m | 13 |
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); |