Can i use Matlab OOP and still use Compiler SDK
2 次查看(过去 30 天)
显示 更早的评论
I want to redo all my algorithm code to Matlab OOP. Currently my code has a single entry point from the commercial application and it is compiled into a .NET assembly. If I maintain the same Matlab interface to the calling program can I change all the underlying code to Matlab OOP without messing anything up?
0 个评论
回答(1 个)
Walter Roberson
2018-3-5
"MATLAB Compiler supports the full MATLAB language including objects, most MATLAB toolboxes, and user-developed user interfaces."
"MATLAB Compiler SDK™ extends the functionality of MATLAB Compiler™ to let you build C/C++ shared libraries, Microsoft® .NET assemblies, Java® classes, and Python® packages from MATLAB® programs. These components can be integrated with custom applications and then deployed to desktop, web, and enterprise systems."
So, yes, you should be fine with Compiler SDK as long as you do not use one of the functions that cannot be compiled anyhow.
2 个评论
Walter Roberson
2018-3-5
My understanding is that the constructor need to be called from a regular function for the purpose of compilation.
It should pick up all the needed files from the @ directories on the MATLAB path.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 MATLAB Compiler SDK 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!