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/joint.m | |
parent | 49162177c5da0404d41f91f5f41006f0456babcd (diff) |
remove FEAST from our source, as our changes went upstream
Diffstat (limited to 'FEAST/MIToolbox/joint.m')
-rw-r--r-- | FEAST/MIToolbox/joint.m | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/FEAST/MIToolbox/joint.m b/FEAST/MIToolbox/joint.m deleted file mode 100644 index f40ff25..0000000 --- a/FEAST/MIToolbox/joint.m +++ /dev/null @@ -1,16 +0,0 @@ -function output = joint(X,arities) -%function output = joint(X,arities) -%returns the joint random variable of the matrix X -%assuming the variables are in columns -% -%if passed a vector of the arities then it produces a correct -%joint variable, otherwise it may not include all states -% -%if the joint variable is only compared with variables using the same samples, -%then arity information is not required - -if (nargin == 2) - [output] = MIToolboxMex(3,X,arities); -else - [output] = MIToolboxMex(3,X); -end |