Trouble linking against MatLab .dll

2 views (last 30 days)
Ulrich
Ulrich on 30 Jul 2014
Answered: Ulrich on 13 Nov 2014
Hello,
i recently tried to link a executable (VS 2010) against mat.dll (...and others ...) by adding references to libmat.lib to my project. However, it compiled, but the Output is not able to run unless the .dll files are located in the same folder as the .exe.
I do not know how to solve this and i have been through the settings in VS 2010 over and over again. Is that something special about the MatLab .dll's ?
The .dlls are part of the MCR, so i don't think it is a license issue (?)
I greatly appreciate any help.
Best Regards, ....
  2 Comments
Salaheddin Hosseinzadeh
Salaheddin Hosseinzadeh on 30 Jul 2014
Hey Ulrich,
Is it possible to load .lib files to MATLAB?! If not what is the point of mentioning .lib and .exe files?!
I know it's possible to load .dll files with their associated .h files to MATLAB bit I haven't hared about .lib
Sorry I just tagged another question to yours! I don't have the knowledge of what you're doing, I just have a serious problem with loading DLL files to MATLAB.
At some point you have to create prototype file from the header file and use it in MATLAB, some points you have to make thunkfile, which I don't know what's it for!
Ulrich
Ulrich on 30 Jul 2014
Well, i think my problem is the opposite ... i want to use the Matlab .dlls in an external executable. You want to call external .dlls from Matlab. To your problem ... I don't know how this is done directly, i just know it is possible to do it. The only way have done such things yet is to wrap the libraries in a mex file. Maybe you have experience with mex-files, then this would be a way for you. It works very well with static libs as well, that is the main advantage of this approach.
Hope that this helps you a little.
Best Regards,
...

Sign in to comment.

Accepted Answer

Titus Edelhofer
Titus Edelhofer on 13 Nov 2014
Hi Ulrich,
is the folder where you found the libMat.dll on your Windows PATH (when you open CMD window, enter PATH). If not, add it to see if it works by
PATH=%PATH%;C:\FolderWhereYouFoundTheDll
and try to run the executable. If it works, go to the system configuration and add the folder to the environment variable PATH.
Titus

More Answers (1)

Ulrich
Ulrich on 13 Nov 2014
Hi,
i think i tried that, but it is a while ago (as you might already know ... ), so i will try this. I am stuck with another thing by now, so i don't know when, but: i will.
Best regards, ...

Categories

Find more on Introduction to Installation and Licensing 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!