12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifdef NICE_USELIB_MEX
- #ifndef _NICE_CONVERTERNICETOMATLABINCLUDE
- #define _NICE_CONVERTERNICETOMATLABINCLUDE
- #include "mex.h"
- #include <core/vector/MatrixT.h>
- #include <core/vector/SparseVectorT.h>
- #include <core/vector/VectorT.h>
- namespace NICE {
- namespace MatlabConversion {
-
- mxArray* convertSparseVectorFromNice( const NICE::SparseVector & niceSvec, const bool & b_adaptIndexCtoM = false );
-
- mxArray* convertMatrixFromNice( const NICE::Matrix & niceMatrix );
-
-
-
- mxArray* convertVectorFromNice( const NICE::Vector & niceVector );
- }
- }
- #endif
- #endif
|