c6f26dd06741559adab79e5333e87ac1fef599f7
1 /* Copyright (C) 2006-2008 Joris Mooij [joris dot mooij at tuebingen dot mpg dot de]
2 Radboud University Nijmegen, The Netherlands /
3 Max Planck Institute for Biological Cybernetics, Germany
5 This file is part of libDAI.
7 libDAI is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 libDAI is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with libDAI; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 /*=================================================================*
25 * This is a MEX-file for MATLAB. *
27 * [logZ,q,md] = dai(psi,method,opts); *
29 *=================================================================*/
33 #include <dai/matlab/matlab.h>
35 #include <dai/alldai.h>
44 #define PSI_IN prhs[0]
45 #define METHOD_IN prhs[1]
46 #define OPTS_IN prhs[2]
50 /* Output Arguments */
52 #define LOGZ_OUT plhs[0]
54 #define MD_OUT plhs[2]
58 void mexFunction( int nlhs
, mxArray
*plhs
[], int nrhs
, const mxArray
*prhs
[] )
62 /* Check for proper number of arguments */
63 if( (nrhs
!= NR_IN
) || (nlhs
!= NR_OUT
) ) {
64 mexErrMsgTxt("Usage: [logZ,q,md] = dai(psi,method,opts)\n\n"
66 "INPUT: psi = linear cell array containing the factors \n"
67 " psi{i} should be a structure with a Member field\n"
68 " and a P field, like a CPTAB).\n"
69 " method = name of the method (see README)\n"
70 " opts = string of options (see README)\n"
72 "OUTPUT: logZ = approximation of the logarithm of the partition sum.\n"
73 " q = linear cell array containing all final beliefs.\n"
74 " md = maxdiff (final linf-dist between new and old single node beliefs).\n");
81 // Get psi and construct factorgraph
82 vector
<Factor
> factors
= mx2Factors(PSI_IN
, 0);
83 FactorGraph
fg(factors
);
84 long nr_v
= fg
.nrVars();
87 buflen
= mxGetN( METHOD_IN
) + 1;
88 method
= (char *)mxCalloc( buflen
, sizeof(char) );
89 mxGetString( METHOD_IN
, method
, buflen
);
92 buflen
= mxGetN( OPTS_IN
) + 1;
93 opts
= (char *)mxCalloc( buflen
, sizeof(char) );
94 mxGetString( OPTS_IN
, opts
, buflen
);
95 // Convert to options object props
101 // Construct InfAlg object, init and run
102 InfAlg
*obj
= newInfAlg( method
, fg
, props
);
108 double logZ
= obj
->logZ();
111 double maxdiff
= obj
->MaxDiff();
114 // Hand over results to MATLAB
115 LOGZ_OUT
= mxCreateDoubleMatrix(1,1,mxREAL
);
116 *(mxGetPr(LOGZ_OUT
)) = logZ
;
118 Q_OUT
= Factors2mx(obj
->beliefs());
120 MD_OUT
= mxCreateDoubleMatrix(1,1,mxREAL
);
121 *(mxGetPr(MD_OUT
)) = maxdiff
;