CVI与matlab混编 实现图像的处理
我想要用CVI打开matlab 并且运行.m文件 matlabUtil.c这个源文件中有各种的函数原型可是直接复制到我的程序中显示各种变量没有定义望高手帮忙intMinMaxMatlab(CAObjHandle hMatlab, int minmaxFlag)
{
HRESULT stat = 0;
if (minmaxFlag == 0)
{
/* Minimize the MATLAB window */
stat = MLApp_DIMLAppMinimizeCommandWindow (hMatlab, NULL);
if (stat < 0) return ERROR_MATLAB_MINMAX;
}
else
{
/* Maximize the MATLAB window */
stat = MLApp_DIMLAppMaximizeCommandWindow (hMatlab, NULL);
if (stat < 0) return ERROR_MATLAB_MINMAX;
}
return SUCCESS;
}
这个程序不能直接用吗?
里面的那些函数变量的含义什么啊?
页:
[1]