## 一个简单的hello word ##
#include"mex.h"
void mexFunction(
int nlhs,
mxArray *plhs[],
int nrhs,
mxArray *prhs[]
)
{
mexPrintf("hello word");
}
## 一个简单的hello word ##
#include"mex.h"
void mexFunction(
int nlhs,
mxArray *plhs[],
int nrhs,
mxArray *prhs[]
)
{
mexPrintf("hello word");
}