7fcc41184c6a5d216bdc3994ea9a8b32fdce5553
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 * [psi] = dai_readfg(filename); *
29 *=================================================================*/
34 #include <dai/matlab/matlab.h>
35 #include <dai/factorgraph.h>
44 #define FILENAME_IN prhs[0]
48 /* Output Arguments */
50 #define PSI_OUT plhs[0]
54 void mexFunction( int nlhs
, mxArray
*plhs
[], int nrhs
, const mxArray
*prhs
[] )
59 // Check for proper number of arguments
60 if ((nrhs
!= NR_IN
) || (nlhs
!= NR_OUT
)) {
61 mexErrMsgTxt("Usage: [psi] = dai_readfg(filename);\n\n"
63 "INPUT: filename = filename of a .fg file\n"
65 "OUTPUT: psi = linear cell array containing the factors\n"
66 " (psi{i} is a structure with a Member field\n"
67 " and a P field, like a CPTAB).\n");
70 // Get input parameters
72 buflen
= mxGetN( FILENAME_IN
) + 1;
73 filename
= (char *)mxCalloc( buflen
, sizeof(char) );
74 mxGetString( FILENAME_IN
, filename
, buflen
);
80 fg
.ReadFromFile( filename
);
81 } catch( std::exception
&e
) {
82 mexErrMsgTxt( e
.what() );
88 for( size_t I
= 0; I
< fg
.nrFactors(); I
++ )
89 psi
.push_back(fg
.factor(I
));
92 // Hand over results to MATLAB
93 PSI_OUT
= Factors2mx(psi
);