Changeset 12850 for issm/trunk-jpl/src/c/matlab/io/matlabio.h
- Timestamp:
- 08/01/12 13:27:31 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/matlab/io/matlabio.h
r12835 r12850 79 79 /*Matlab to Petsc routines: */ 80 80 #ifdef _HAVE_PETSC_ 81 int MatlabMatrixToPetscMatrix(Mat* matrix,int* prows,int* pcols, const mxArray* mxmatrix); 82 int MatlabVectorToPetscVector(Vec* pvector,int* pvector_rows,const mxArray* mxvector); 81 int MatlabMatrixToPetscMat(Mat* matrix,int* prows,int* pcols, const mxArray* mxmatrix); 82 PetscMat* MatlabMatrixToPetscMat(const mxArray* mxmatrix); 83 int MatlabVectorToPetscVec(Vec* pvector,int* pvector_rows,const mxArray* mxvector); 84 PetscVec* MatlabVectorToPetscVec(const mxArray* mxvector); 83 85 #endif 84 86
Note:
See TracChangeset
for help on using the changeset viewer.