Matlab.h

Go to the documentation of this file.
00001 #ifndef _DEBUG_TOOLS_H
00002 #define _DEBUG_TOOLS_H
00003 
00004 #include <stdio.h>
00005 #include <string.h>
00006 
00007 #ifndef NO_MATLAB
00008         #include "Engine.h"     // MatLab 6.5+ required
00009         // #include"I:\MATLAB6p5\extern\include\Engine.h"
00010 #else
00011         typedef void* Engine;
00012         typedef void* mxArray;
00013 #endif
00014 
00015 
00016 bool InitMatlabEngine();
00017 void CloseMatlabEngine();
00018 Engine* GetEngine();
00019 mxArray* _CreateDoubleMatrix(int nRow, int nCol, double* pData, char* szVarName);
00020 
00021 typedef size_t mwIndex;
00022 
00023 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerator Defines