Changeset 8545
- Timestamp:
- 06/08/11 10:24:32 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/io/MatlabNArrayToNArray.cpp
r7860 r8545 1 /* \file Matlab Conversions.cpp2 * \brief: convert a sparse or dense matlab array to cpparray1 /* \file MatlabNArrayToNArray.cpp 2 * \brief: convert a sparse or dense matlab n-dimensional array to cpp n-dimensional array 3 3 */ 4 4 … … 17 17 #include <mex.h> 18 18 19 /*FUNCTION MatlabNArrayToNArray(double** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix){{{1*/ 19 20 int MatlabNArrayToNArray(double** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix){ 20 21 … … 95 96 return 1; 96 97 } 97 98 /*}}}*/ 99 /*FUNCTION MatlabNArrayToNArray(bool** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix){{{1*/ 98 100 int MatlabNArrayToNArray(bool** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix){ 99 101 … … 174 176 return 1; 175 177 } 176 178 /*}}}*/ 179 /*FUNCTION MatlabNArrayToNArray(char** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix){{{1*/ 177 180 int MatlabNArrayToNArray(char** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix){ 178 181 … … 269 272 return 1; 270 273 } 271 274 /*}}}*/ 272 275 #endif
Note:
See TracChangeset
for help on using the changeset viewer.