JAVA or C++? Which one works better with MATLAB?
8 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Guillaume
2015-4-29
Matlab's desktop environment is built on top of java and you can call java functions easily from matlab.
Matlab can't talk to C++ directly, but it can talk to dlls as long as they use the C calling convention.
2 个评论
Guillaume
2015-4-29
arg1, ..., argn are the arguments for the function you want to call. Only the dll documentation can tell you what they are.
The hfile is ideally the header file (.h) that has been used to build the library. That should come from the author of the dll. If you don't have it, you may be able to create a proto file instead from the documentation. Its purpose is to tell matlab what the types of the arguments are, so it can convert matlab variables into their C equivalent.
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!