Changeset 354 for doc/html/mexfiles.html
- Timestamp:
- 06/02/09 10:24:26 (16 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
doc/html/mexfiles.html
r353 r354 76 76 </pre></div> on Linux, or <div class="fragment"><pre class="fragment">$ ./buildmex.bat my_mex_file.cpp 77 77 </pre></div> on Windows.<p> 78 Example of a mexfile: <div class="fragment"><pre class="fragment"><span class="preprocessor">#include < <a class="code" href="itmex_8h.html" title="Conversion routines between IT++ and Matlab.">itpp/itmex.h</a>></span>78 Example of a mexfile: <div class="fragment"><pre class="fragment"><span class="preprocessor">#include <itpp/itmex.h></span> 79 79 <span class="preprocessor">#include <<a class="code" href="arx_8h.html" title="Bayesian Filtering for generalized autoregressive (ARX) model.">estim/arx.h</a>></span> 80 80 … … 88 88 89 89 <span class="comment">// Convert input variables to IT++ format</span> 90 <span class="keywordtype">int</span> ysize = <a class="code" href="group__mexfiles.html#gc0d9ead5b652d552a51129bfa29f0aea" title="Convert the matlab-format mxArray to int.">mxArray2int</a>(input[0]);91 mat Data = <a class="code" href="group__mexfiles.html#g2adb0970c31c7febf62850fabed65c5c" title="Convert the matlab-format mxArray to mat.">mxArray2mat</a>(input[1]);90 <span class="keywordtype">int</span> ysize = mxArray2int(input[0]); 91 mat Data = mxArray2mat(input[1]); 92 92 93 93 <span class="comment">// ------------------ Start of routine ---------------------------</span> … … 101 101 102 102 <span class="comment">// Convert the IT++ format to Matlab format for output</span> 103 <a class="code" href="group__mexfiles.html#gd1f0678a5b5a93a20c50aef0bf7bf211" title="Convert vec to the matlab-format mxArray.">vec2mxArray</a>(Ar.posterior().mean(), output[0]);103 vec2mxArray(Ar.posterior().mean(), output[0]); 104 104 } 105 105 </pre></div> </div> 106 <hr size="1"><address style="text-align: right;"><small>Generated on Tue Jun 2 10: 02:142009 for mixpp by 106 <hr size="1"><address style="text-align: right;"><small>Generated on Tue Jun 2 10:11:00 2009 for mixpp by 107 107 <a href="http://www.doxygen.org/index.html"> 108 108 <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address>