Changeset 13216 for issm/trunk-jpl/src/c/matlab/io/MatlabVectorToSeqVec.cpp
- Timestamp:
- 08/31/12 17:23:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/matlab/io/MatlabVectorToSeqVec.cpp
r12365 r13216 19 19 /*}}}*/ 20 20 21 SeqVec * MatlabVectorToSeqVec(const mxArray* dataref){21 SeqVec<double>* MatlabVectorToSeqVec(const mxArray* dataref){ 22 22 23 SeqVec * output=NULL;23 SeqVec<double>* output=NULL; 24 24 25 output=new SeqVec ();25 output=new SeqVec<double>(); 26 26 MatlabVectorToDoubleVector(&output->vector,&output->M,dataref); 27 27 return output;
Note:
See TracChangeset
for help on using the changeset viewer.