Matlab builder NE problem
1 view (last 30 days)
Show older comments
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 Comments
Accepted Answer
More Answers (2)
Friedrich
on 8 Jul 2011
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 Comments
Friedrich
on 8 Jul 2011
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.
See Also
Categories
Find more on C Shared Library Integration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!