在C++中怎么调用MATLAB来计算一元三次方程
1个回答
展开全部
有点难度~~~~两种方法:
1,用MATLAB的特定外部接口编译C程序,其外部接口是:
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]);
例如:
// mexhello.c
#include<mex.h>
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
mexPrintf("Hello world !");
}
然后存到MATLAB文档中,用他进行编译,
在命令窗口输入:mex mexhello.c
编译之后,在输入:mexhello
程序就开始运行了~
2,是用c编译器调用MATLAB c++ 数学函数库,这个就有点难了,至今我也不怎么会,你自己找本书可以学习一下,我现在看一本书:MATLAB C++ 应用开发(甘才军编,清华大学出版社),
这个就需要你自己学习了~~~~~
1,用MATLAB的特定外部接口编译C程序,其外部接口是:
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[]);
例如:
// mexhello.c
#include<mex.h>
void mexFunction(int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
mexPrintf("Hello world !");
}
然后存到MATLAB文档中,用他进行编译,
在命令窗口输入:mex mexhello.c
编译之后,在输入:mexhello
程序就开始运行了~
2,是用c编译器调用MATLAB c++ 数学函数库,这个就有点难了,至今我也不怎么会,你自己找本书可以学习一下,我现在看一本书:MATLAB C++ 应用开发(甘才军编,清华大学出版社),
这个就需要你自己学习了~~~~~
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询