xref: /petsc/include/petscmatlab.h (revision d4d5ece07e42d885eacb7e4ad91198fffe4d9c37)
1de580fa9SBarry Smith /*
2de580fa9SBarry 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 PETSC_EXTERN_CXX_BEGIN
8de580fa9SBarry Smith 
96849ba73SBarry Smith extern PetscCookie MATLABENGINE_COOKIE;
10de580fa9SBarry Smith 
11de580fa9SBarry Smith /*S
12de580fa9SBarry Smith      PetscMatlabEngine - Object used to communicate with Matlab
13de580fa9SBarry Smith 
14de580fa9SBarry Smith    Level: intermediate
15de580fa9SBarry Smith 
16de580fa9SBarry Smith .seealso:  PetscMatlabEngineCreate(), PetscMatlabEngineDestroy(), PetscMatlabEngineEvaluate(),
17de580fa9SBarry Smith            PetscMatlabEngineGetOutput(), PetscMatlabEnginePut(), PetscMatlabEngineGet(),
18de580fa9SBarry Smith            PetscMatlabEnginePrintOutput(), PetscMatlabEnginePutArray(), PetscMatlabEngineGetArray(),
19de580fa9SBarry Smith            PETSC_MATLAB_ENGINE_(), PETSC_MATLAB_ENGINE_SELF, PETSC_MATLAB_ENGINE_WORLD
20de580fa9SBarry Smith S*/
21de580fa9SBarry Smith typedef struct _p_PetscMatlabEngine* PetscMatlabEngine;
22de580fa9SBarry Smith 
23ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEngineCreate(MPI_Comm,const char[],PetscMatlabEngine*);
24ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEngineDestroy(PetscMatlabEngine);
25ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEngineEvaluate(PetscMatlabEngine,const char[],...);
26ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEngineGetOutput(PetscMatlabEngine,char **);
27ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEnginePrintOutput(PetscMatlabEngine,FILE*);
28ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEnginePut(PetscMatlabEngine,PetscObject);
29ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEngineGet(PetscMatlabEngine,PetscObject);
30ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEnginePutArray(PetscMatlabEngine,int,int,PetscScalar*,const char[]);
31ff73aad6SKris Buschelman EXTERN PetscErrorCode PETSC_DLLEXPORT PetscMatlabEngineGetArray(PetscMatlabEngine,int,int,PetscScalar*,const char[]);
32de580fa9SBarry Smith 
33*d4d5ece0SKris Buschelman EXTERN PetscMatlabEngine PETSC_DLLEXPORT PETSC_MATLAB_ENGINE_(MPI_Comm);
34de580fa9SBarry Smith 
35de580fa9SBarry Smith /*MC
36de580fa9SBarry Smith   PETSC_MATLAB_ENGINE_WORLD - same as PETSC_MATLAB_ENGINE_(PETSC_COMM_WORLD)
37de580fa9SBarry Smith 
38de580fa9SBarry Smith   Level: developer
39de580fa9SBarry Smith M*/
40de580fa9SBarry Smith #define PETSC_MATLAB_ENGINE_WORLD PETSC_MATLAB_ENGINE_(PETSC_COMM_WORLD)
41de580fa9SBarry Smith 
42de580fa9SBarry Smith /*MC
43de580fa9SBarry Smith   PETSC_MATLAB_ENGINE_SELF - same as PETSC_MATLAB_ENGINE_(PETSC_COMM_SELF)
44de580fa9SBarry Smith 
45de580fa9SBarry Smith   Level: developer
46de580fa9SBarry Smith M*/
47de580fa9SBarry Smith #define PETSC_MATLAB_ENGINE_SELF  PETSC_MATLAB_ENGINE_(PETSC_COMM_SELF)
48de580fa9SBarry Smith 
49de580fa9SBarry Smith PETSC_EXTERN_CXX_END
50de580fa9SBarry Smith #endif
51