xref: /petsc/include/petscmatlab.h (revision 014dd563d73e9fc78d056590fa6cf997782bf92d)
1de580fa9SBarry Smith /*
2e3c5b3baSBarry Smith     Defines an interface to the MATLAB Engine from PETSc
3de580fa9SBarry Smith */
4de580fa9SBarry Smith 
5de580fa9SBarry Smith #if !defined(__PETSCMATLAB_H)
6de580fa9SBarry Smith #define __PETSCMATLAB_H
7de580fa9SBarry Smith 
8*014dd563SJed Brown PETSC_EXTERN PetscClassId MATLABENGINE_CLASSID;
9de580fa9SBarry Smith 
10de580fa9SBarry Smith /*S
11e3c5b3baSBarry Smith      PetscMatlabEngine - Object used to communicate with MATLAB
12de580fa9SBarry Smith 
13de580fa9SBarry Smith    Level: intermediate
14de580fa9SBarry Smith 
15de580fa9SBarry Smith .seealso:  PetscMatlabEngineCreate(), PetscMatlabEngineDestroy(), PetscMatlabEngineEvaluate(),
16de580fa9SBarry Smith            PetscMatlabEngineGetOutput(), PetscMatlabEnginePut(), PetscMatlabEngineGet(),
17de580fa9SBarry Smith            PetscMatlabEnginePrintOutput(), PetscMatlabEnginePutArray(), PetscMatlabEngineGetArray(),
18de580fa9SBarry Smith            PETSC_MATLAB_ENGINE_(), PETSC_MATLAB_ENGINE_SELF, PETSC_MATLAB_ENGINE_WORLD
19de580fa9SBarry Smith S*/
20de580fa9SBarry Smith typedef struct _p_PetscMatlabEngine* PetscMatlabEngine;
21de580fa9SBarry Smith 
22*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEngineCreate(MPI_Comm,const char[],PetscMatlabEngine*);
23*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEngineDestroy(PetscMatlabEngine*);
24*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEngineEvaluate(PetscMatlabEngine,const char[],...);
25*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEngineGetOutput(PetscMatlabEngine,char **);
26*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEnginePrintOutput(PetscMatlabEngine,FILE*);
27*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEnginePut(PetscMatlabEngine,PetscObject);
28*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEngineGet(PetscMatlabEngine,PetscObject);
29*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEnginePutArray(PetscMatlabEngine,int,int,const PetscScalar*,const char[]);
30*014dd563SJed Brown PETSC_EXTERN PetscErrorCode PetscMatlabEngineGetArray(PetscMatlabEngine,int,int,PetscScalar*,const char[]);
31de580fa9SBarry Smith 
32*014dd563SJed Brown PETSC_EXTERN PetscMatlabEngine  PETSC_MATLAB_ENGINE_(MPI_Comm);
33de580fa9SBarry Smith 
34de580fa9SBarry Smith /*MC
35de580fa9SBarry Smith   PETSC_MATLAB_ENGINE_WORLD - same as PETSC_MATLAB_ENGINE_(PETSC_COMM_WORLD)
36de580fa9SBarry Smith 
37de580fa9SBarry Smith   Level: developer
38de580fa9SBarry Smith M*/
39de580fa9SBarry Smith #define PETSC_MATLAB_ENGINE_WORLD PETSC_MATLAB_ENGINE_(PETSC_COMM_WORLD)
40de580fa9SBarry Smith 
41de580fa9SBarry Smith /*MC
42de580fa9SBarry Smith   PETSC_MATLAB_ENGINE_SELF - same as PETSC_MATLAB_ENGINE_(PETSC_COMM_SELF)
43de580fa9SBarry Smith 
44de580fa9SBarry Smith   Level: developer
45de580fa9SBarry Smith M*/
46de580fa9SBarry Smith #define PETSC_MATLAB_ENGINE_SELF  PETSC_MATLAB_ENGINE_(PETSC_COMM_SELF)
47de580fa9SBarry Smith 
48de580fa9SBarry Smith #endif
49