概述
我使用的是:VS 2008, matlab
R2009a;
1. 首先遇到的第一个问题是:****
类型初始值设定项引发异常.
安装MCRInstall.exe,我安装完Matlab之后在这里找得的:D:"Program
FilesMATLABR2009btoolboxcompilerdeploywin32
点击:我的电脑-属性-高级-环境变量-系统变量-PATH-编辑,在变量值输入框中,不要删除以前的字符串,在最前面加入MCR的安装路径,如:D:"Program
FilesMATLABMATLAB Compiler Runtimev80binwin32;
然后确定、保存、重启电脑。(我就是不知道需要这两步,老是在C#创建Matlab的访问对象时,出现:“xxx的类型初始值设定项引发异常。”,完全不理解是什么原因,被耽搁了大量时间,直到安装了Matlab
2008b,仔细阅读它生成的readme.txt才知道)
第二步: 在matlab的Command window中输入mbuild
-setup显示如下
>> mbuild -setup
Please choose your compiler for building standalone MATLAB
applications: Would you like mbuild to locate installed compilers
[y]/n? n %选择n
Select a compiler:
[1] Lcc-win32 C 2.4.1
[2] Microsoft Visual C++ 6.0
[3] Microsoft Visual C++ .NET 2003
[4] Microsoft Visual C++ 2005
[5] Microsoft Visual C++ 2005 Express Edition
[6] Microsoft Visual C++ 2008
[0] None Compiler: 4 %选择4,其他编译器可以选相应的选项,我没有验证过
The default location for Microsoft
Visual C++ 2008 compilers is C:Program FilesMicrosoft Visual
Studio 8, but that directory does not exist on this machine.
Use C:Program FilesMicrosoft Visual
Studio 8.0 anyway [y]/n? n%选择n
Please enter the location of your compiler: [C:Program
FilesMicrosoft Visual Studio 9] D:Program FilesMicrosoft Visual
Studio 8.0 %选择您自己的当前安装路径
Please verify your choices: Compiler: Microsoft Visual C++ 2005
Location: D:Program FilesMicrosoft Visual Studio 8.0 Are these
correct [y]/n? y %看上述信息,如果正确选择y
Warning: MBUILD requires that the Microsoft Visual C++ 8.0
directories "VC" and "Common7" be located within the same parent
directory. MBUILD setup expected to find directories named
"Common7" and "VC" in the directory: "C:Program FilesMicrosoft
Visual Studio 8". Trying to update options file: C:Documents and
SettingsAdministratorApplication
DataMathWorksMATLABR2009acompopts.bat From template:
D:PROGRA~1MATLABR2009abinwin32mbuildoptsmsvc80compp.bat Done
. . . 到此matlab编译器设置成功。
第三步: 编写m文件:
function y=mymagic(x)
y=magic(x);
第四步:建立项目:
在matlab中点击“File- new -Development Project”
自己选择项目保存目录和项目名,如E:"和magicpro.prj 类 型选择.NET
Component,如果你要生成更通用的COM组件,选择Generic COM
Component。添加刚才的m文件到这个新建的项目中去。点击Build the
project按钮(这个按钮的图标和微软开发工具的Build图标一样)或者右击选择“build”,等待3,4分钟。建立成功。
2. 以上问题解决之后,第二个问题,出现R6034错误。解决方法摘录如下:
1、在MCR安装目录下D:Program FilesMATLABMATLAB Compiler
Runtimev710binwin32下有一个tbbmalloc.dll ,将这个dll文件复制一份;
2、将tbbmalloc.dll 重命名为tbbmalloc.dll.bak;
3、在Visual Studio 命令提示符下:输入以下的命令:cd D:Program
FilesMATLABMATLAB Compiler Runtimev710binwin32
再输入命令mt.exe -inputresource:libut.dll;#2
-outputresource:tbbmalloc.dll;#2
执行命令后会在tbbmalloc.dll
中包含一些清单(manifests)。这样就不会出现r6034错误了。
4、将所有出现r6034错误的机子上,用新的tbbmalloc.dll
替换原来的tbbmalloc.dll 文件
加:matlab文件目录中不能含义空格或者中文字符。
------------------------------------------
最后,还出现了其他的问题,现在还没解决,只是,忽略问题的话,程序可以继续往下跑。
最后
以上就是健康雪碧为你收集整理的matlab libut.dll,C#调用matlab生成的dll文件问题的全部内容,希望文章能够帮你解决matlab libut.dll,C#调用matlab生成的dll文件问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复