matlab libut.dll,C#调用matlab生成的dll文件问题

我使用的是:VS 2008, matlab

R2009a;

1. 首先遇到的第一个问题是:****

类型初始值设定项引发异常.

安装MCRInstall.exe,我安装完Matlab之后在这里找得的:D:"Program

Files\MATLAB\R2009b\toolbox\compiler\deploy\win32

点击:我的电脑-属性-高级-环境变量-系统变量-PATH-编辑,在变量值输入框中,不要删除以前的字符串,在最前面加入MCR的安装路径,如:D:"Program

Files\MATLAB\MATLAB Compiler Runtime\v80\bin\win32;

然后确定、保存、重启电脑。(我就是不知道需要这两步,老是在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 Files\Microsoft Visual

Studio 8, but that directory does not exist on this machine.

Use C:\Program Files\Microsoft Visual

Studio 8.0 anyway [y]/n? n%选择n

Please enter the location of your compiler: [C:\Program

Files\Microsoft Visual Studio 9] D:\Program Files\Microsoft Visual

Studio 8.0 %选择您自己的当前安装路径

Please verify your choices: Compiler: Microsoft Visual C++ 2005

Location: D:\Program Files\Microsoft 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 Files\Microsoft

Visual Studio 8". Trying to update options file: C:\Documents and

Settings\Administrator\Application

Data\MathWorks\MATLAB\R2009a\compopts.bat From template:

D:\PROGRA~1\MATLAB\R2009a\bin\win32\mbuildopts\msvc80compp.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 Files\MATLAB\MATLAB Compiler

Runtime\v710\bin\win32下有一个tbbmalloc.dll ,将这个dll文件复制一份;

2、将tbbmalloc.dll 重命名为tbbmalloc.dll.bak;

3、在Visual Studio 命令提示符下:输入以下的命令:cd D:\Program

Files\MATLAB\MATLAB Compiler Runtime\v710\bin\win32

再输入命令mt.exe -inputresource:libut.dll;#2

-outputresource:tbbmalloc.dll;#2

执行命令后会在tbbmalloc.dll

中包含一些清单(manifests)。这样就不会出现r6034错误了。

4、将所有出现r6034错误的机子上,用新的tbbmalloc.dll

替换原来的tbbmalloc.dll 文件

加:matlab文件目录中不能含义空格或者中文字符。

------------------------------------------

最后,还出现了其他的问题,现在还没解决,只是,忽略问题的话,程序可以继续往下跑。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Unity中使用Matlab生成.dll文件的步骤如下: 1. 首先,确保你的计算机上已经安装了Matlab和Unity。 2. 在Matlab中,编写你需要用于导出的函数代码。确保你的函数输入和输出参数是适用于Unity的数据类型,例如基本数据类型(int,float等)、数组或结构体。 3. 使用Matlab的“mcc”命令将你的Matlab代码编译成可执行文件,并同时生成C源文件。例如,在Matlab命令行中输入: mcc -W lib:MyMatlabLib -T link:lib myMatlabFunction.m 这将生成一个名为“MyMatlabLib”(也可以自定义名称)的文件夹,并包含一个C源文件和其他必需的文件。 4. 打开Unity,在Assets文件夹下创建一个名为“Plugins”的文件夹。 5. 将之前生成的C源文件(通常是形如“MyMatlabLib.c”的文件)复制到“Plugins”文件夹中。 6. 在Unity中创建一个C#脚本,以调用你在Matlab中编写并编译的函数。在脚本中使用[DllImport]来导入.dll文件,并定义需要导入的函数签名。例如: [DllImport("MyMatlabLib")] private static extern int myMatlabFunction(int input1, float input2, ref float output); 7. 在Unity中的任何可执行代码(例如Start或Update方法)中使用刚刚定义的函数。例如: float outputValue = 0.0f; int result = myMatlabFunction(10, 5.0f, ref outputValue); 这将调用你在Matlab中编写的函数,将输入参数(10和5.0)传递给函数,并将计算结果存储在outputValue变量中。 8. 现在,你可以在Unity中使用Matlab函数生成的.dll文件了。 需要注意的是,在使用Matlab生成.dll文件时,确保你的Matlab代码和Unity的项目具有相同的位数和平台(32位或64位)。 另外,还需要注意的是,.dll文件不能直接在移动设备上使用,因为移动设备不支持生成和使用.dll文件

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值