帮朋友写了个程序因为用到高精度的解方程,自己写的程序不能满足要求,就用c++调用matlab函数进行求解,发现网上相关的资料不多,并且都是很早的版本,下面把我自己的方法记录下来,用一个简单的示例来实现
示例可以在这里下到:http://download.csdn.net/source/1080308
首先看编程环境:
Visual Studio 6.0 安装目录:D:/Microsoft Visual Studio
Matlab R2007a 安装目录: D:/Program Files/MATLAB/R2007a
接着是配置一些简单的路径:
vs配置:
在环境变量path中加入matlab的bin目录D:/Program Files/MATLAB/R2007a/bin/win32
在vs 6.0中 tools->options->directories
include files 加入D:/Program Files/MATLAB/R2007a/extern/include和D:/Program Files/MATLAB/R2007a/extern/include/win32;
library files 加入D:/Program Files/MATLAB/R2007a/extern/lib/win32/microsoft
matlab配置:
在帮助文档中输入compiler就可以看到相关的内容,配置如下:
matlab命令行中输入mbuild -setup;
mbuild -setup
Please choose your compiler for building standalone MATLAB applications:
Would you like mbuild to locate installed compilers [y]/n? y
Select a compiler:
[1] Lcc-win32 C 2.4.1 in D:/PROGRA~1/MATLAB/R2007a/sys/lcc
[2] Microsoft Visual C++ 6.0 in D:/Microsoft Visual Studio
[0] None
Compiler: 2
Please verify your choices:
Compiler: Microsoft Visual C++ 6.0
Location: D:/Microsoft Visual Studio
Are these correct?([y]/n): y
确定之后等待运行完成;
接着运行mex -setup ,这个命令我不确定是不是一定要运行,不过运行了肯定没错
Please choose your compiler for building external interface (MEX) files:
Would you like mex to locate installed compilers [y]/n? y
Select a compiler:
[1] Lcc-win32 C 2.4.1 in D:/PROGRA~1/MATLAB/R2007a/sys/lcc
[2] Microsoft Visual C++ 6.0 in D:/Microsoft Visual Studio
[0] None
Compiler: 2
Please verify your choices:
Compiler: Microsoft Visual C++ 6.0
Location: D:/Microsoft Visual Studio
Are these correct?([y]/n): y
运行完成后matlab配置也就完了
接下来就是写一些matlab函数文件了,先写一个m文件,这里就写了一个简单的输入n,输出magic(n)的测试程序
function [matrix]=magicMatrix(n)
if n>0
matrix = magic(n)
end
命名为magicMatrix.m保存到magic目录下,
matlab命令行中运行deploytool,
选择create a new deployment project,选择matlab compiler,c++ shared library,命名为magic.prj,保存,出现的project,右键点击 exported functions, add files, 将magicMatrix.m加进去,或者直接从工作目录中拖进去,build the project, 完成后得到一个magic文件夹,包含distrib和src两个子目录,distrib中的文件就是将magicMatrix.m加到C++调用要使用的文件,包括magicMatrix.ctf,magicMatrix.dll,magicMatrix.exports,magicMatrix.h,matrixMatrix.lib;
vs中新建一个console application,添加main.cpp,将之前得到的文件全部复制到程序目录下,
main.cpp为:
前面的一些lib是D:/Program Files/MATLAB/R2007a/extern/lib/win32/microsoft目录下的lib也可以通过project setting设置,考虑其他项目才这样写的,主要用到的数据结构可以参考compiler的帮助文件。运行就可以得到matlab运行得到的结果。
主要过程就是这样的,欢迎各位与我讨论,mailto:chen0510566@163.com