diff options
author | Calvin <calvin@EESI> | 2013-03-26 13:21:36 -0400 |
---|---|---|
committer | Calvin <calvin@EESI> | 2013-03-26 13:21:36 -0400 |
commit | 94da049a53423a9aca04d8376b75347ca7eadcbe (patch) | |
tree | 75714a7e2b02b4a9cbd51f0d43b16b6e92dbd4f6 /FEAST/MIToolbox/joint.m | |
parent | 15094127277f73541a1c2f887caf1c7edda7fdb5 (diff) |
moved FEAST Libraries
Diffstat (limited to 'FEAST/MIToolbox/joint.m')
-rw-r--r-- | FEAST/MIToolbox/joint.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/FEAST/MIToolbox/joint.m b/FEAST/MIToolbox/joint.m new file mode 100644 index 0000000..f40ff25 --- /dev/null +++ b/FEAST/MIToolbox/joint.m @@ -0,0 +1,16 @@ +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 |