作者在 2008-12-15 14:28:06 发布以下内容
安装maltab7.0.1 版本后(maltab5.3中没有mcc工具),在<matlabroot>\toolbox\compiler\deploy\win32中的MCRINSTALL.EXE解压出的setup.exe进行mcc的安装。
对于低版本的 maltab 可能需要在单独下载 mcc编译器
测试:
在 <matlabroot>\extern\example\compile 中的magicsquare.m文件赋值到当前目录
然后使用mcc -mv magicsquare.m命令
然后在
Select a compiler:
[1] Lcc C version 2.4 in F:\PROGRAM_FILES\MATLAB701\sys\lcc
[2] Microsoft Visual C/C++ version 6.0 in F:\Program_Files\Microsoft Visual Studio
[0] None
Compiler:
时输入 2 选择VC 即可生成一个 magicsquare.exe文件
然后输入 magicsquare 4
显示:
ans =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
则表明mcc功能可正确使用
对于低版本的 maltab 可能需要在单独下载 mcc编译器
测试:
在 <matlabroot>\extern\example\compile 中的magicsquare.m文件赋值到当前目录
然后使用mcc -mv magicsquare.m命令
然后在
Select a compiler:
[1] Lcc C version 2.4 in F:\PROGRAM_FILES\MATLAB701\sys\lcc
[2] Microsoft Visual C/C++ version 6.0 in F:\Program_Files\Microsoft Visual Studio
[0] None
Compiler:
时输入 2 选择VC 即可生成一个 magicsquare.exe文件
然后输入 magicsquare 4
显示:
ans =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1
则表明mcc功能可正确使用