Ignore:
Timestamp:
03/07/12 19:00:56 (13 years ago)
Author:
Eric.Larour
Message:

Starting abstraction of Matrix and Vector objects, to step away from Petsc libraries.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/c/toolkits/matlab/matlabincludes.h ΒΆ

    r8901 r11670  
    88#ifdef _SERIAL_
    99#include <mex.h>
     10class Matrix;
     11class Vector;
     12
    1013int MatlabNArrayToNArray(double** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix);
    1114int MatlabNArrayToNArray(bool** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix);
    1215int MatlabNArrayToNArray(char** pmatrix,int* pmatrix_numel,int* pmatrix_ndims,int** pmatrix_size,const mxArray* mxmatrix);
     16Matrix* MatlabMatrixToMatrix(const mxArray* mxmatrix);
     17Vector* MatlabVectorToVector(const mxArray* mxvector);
    1318#endif
    1419
Note: See TracChangeset for help on using the changeset viewer.