- 1、本文档共3页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
MATLAB编译并调用C、C++程序.pdf
MATLAB 编译并调用 C、C++程序
MATLAB 的 C、C++程序编译器的设置:
在命令窗口中输入: mex -setup ,接着按照提示进行即可完成 C、
C++程序编译器的设置。
在 MATLAB 中编译 C、C++程序:
C、C++程序的格式以 test.cpp 为例,如下示:
#include mex.h //必须
#include math.h
//程序功能实现函数
void Desc2Pol ( double dbX, double dbY, double *pdbA, double *pdbG )
{
*pdbA = sqrt(dbX * dbX + dbY * dbY );
if (dbY == 0 )
{
if ( dbX 0 )
{
*pdbG = -90;
}
else
{
*pdbG = 90;
}
}
else
{
*pdbG = atan( dbX/dbY );
}
}
//Matlab的接口函数,必须而且格式也一样
void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray
*prhs[] )
{
/*
其中nlhs为在Matlab环境中调用该函数时要求返回参数的个数
nrhs为在Matlab环境中调用该函数时输入参数的个数
plhs在Matlab环境中调用该函数时要求返回参数的队列
prhs在Matlab环境中调用该函数时输入参数的队列
*/
int mrows = 0;
int ncols = 0;
double dbX = 0;
double dbY = 0;
double *pdbA = NULL;
double *pdbG = NULL;
/* Check for proper number of arguments. 检查输入、输出参数个数 */
//必须是2个输入参数
//包括
if ( nrhs != 2 )
{
mexErrMsgTxt(Two input required.);
}
//必须是2个输出参数
//包括
if ( nlhs != 2 )
{
mexErrMsgTxt(Two output required.);
}
/* Check for proper type of arguments . 检查输入、输出参数类型 */
mrows = mxGetM(prhs[0]);
ncols = mxGetN(prhs[0]);
if ( mxIsComplex(prhs[0]) ||
!(mrows == 1 ncols == 1))
{
mexErrMsgTxt(The First input must be a noncomplex scalar double
precision.);
}
mrows = mxGetM( prhs[ 1 ] );
ncols = mxGetN( prhs[ 1 ] );
if ( mxIsComplex( prhs[ 1 ] ) ||
!(mrows == 1 ncols == 1 ) )
{
mexErrMsgTxt(The fourth input must be a noncomplex scalar double
precision.);
}
dbX = mxGetScalar( prhs[ 0 ] );
dbY = mxGetScalar( prhs[ 1 ] );
/* Create matrix for the return argument.
文档评论(0)