- Timestamp:
- 08/02/12 17:13:12 (13 years ago)
- Location:
- issm/branches/trunk-jpl-damage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-jpl-damage
- Property svn:mergeinfo changed
-
issm/branches/trunk-jpl-damage/src/c/matlab/io/MatlabMatrixToMatrix.cpp
r12013 r12878 3 3 4 4 /*Headers:*/ 5 /*{{{ 1*/5 /*{{{*/ 6 6 #ifdef HAVE_CONFIG_H 7 7 #include <config.h> … … 14 14 #include <string.h> 15 15 #include "./matlabio.h" 16 #include "../../ objects/objects.h"16 #include "../../classes/classes.h" 17 17 #include "../../shared/shared.h" 18 18 #include "../../Container/Container.h" … … 31 31 32 32 #ifdef _HAVE_PETSC_ 33 MatlabMatrixToPetscMatrix(&matrix->matrix,NULL,NULL,mxmatrix);33 matrix->pmatrix=MatlabMatrixToPetscMat(mxmatrix); 34 34 #else 35 matrix-> matrix=MatlabMatrixToSeqMat(mxmatrix);35 matrix->smatrix=MatlabMatrixToSeqMat(mxmatrix); 36 36 #endif 37 37
Note:
See TracChangeset
for help on using the changeset viewer.