Matlab builder NE problem
1 次查看(过去 30 天)
显示 更早的评论
Hi,
I'm having trouble using the corr2() function as part of a compiled Stand-Alone Application, where I have a .NET application where functions of a MATLAB Builder NE generated DLL are called.
There is absolutely nothing wrong with the code because it works perfectly as an .m file. If I run the .exe aplication on my computer it works great, the problem is when I run it in other computer, without matlab, but with the MCR installed. I have a 64-bit machine, while the other computer is a 32-bit machine.
here is the problem:
Undefined function or method 'iptcheckinput' for input arguments of type 'cell'. error in corr2> ParseInputs
Thanks in advance.
Jobormo.
0 个评论
采纳的回答
更多回答(2 个)
Friedrich
2011-7-8
Which bitness has the .NET DLL you compiled? It must be a 32bit ML used to make a .NET DLL which can run on a 32bit System. Since you are on 64bit Windows, which is the ML version you are using? Since installing 32bit ML on 64bit machine is supported with R2010b and higher:
I had some issues with 32bit ML Compiler/Builder on 64bit Windows when using an older version as R2010b.
Even .NET allows you to compile an exe as “Any CPU” doesn’t mean that the ML generated .NET DLL is able to handle “Any CPU”. Sine the MWARRAY Class is a wrapper class for the MXArray API it is strongly bitness dependent.
2 个评论
Friedrich
2011-7-8
Thats why it wont work. You have to use a 32bit ML in order to compile a .NET DLL which can run on a 32bit machine.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 C Shared Library Integration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!