Should I use MATLAB Compiler (SDK) or MATLAB Coder to deploy my MATLAB programs?
144 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2015-6-15
编辑: MathWorks Support Team
2021-7-17
Should I use MATLAB Compiler (SDK) or MATLAB Coder to deploy my MATLAB applications?
采纳的回答
MathWorks Support Team
2023-11-17
编辑:MathWorks Support Team
2021-7-17
MATLAB Compiler enables you to share your MATLAB programs as standalone executables (.exe) that run against a MATLAB Runtime. It supports most of the features in MATLAB, including graphics, and protects your intellectual property by encrypting your MATLAB code.
MATLAB Compiler SDK extends MATLAB Compiler by the ability to provide shared libraries (.dll, .so), so that your MATLAB programs can be packaged into software components for integration with other programming languages.
MATLAB Coder on the other hand, provides readable and portable C source code. It supports a subset of the MATLAB Language focused on algorithms performing numerical computations.
The high-level differences between the two approaches are summarized below:
Frequently asked questions:
Useful links:
3 个评论
Walter Roberson
2020-11-24
编辑:Walter Roberson
2020-11-24
What output do you get when you use
mex -v -setup C
Walter Roberson
2021-9-2
移动:Stefanie Schwarz
2022-9-6
Neither R2014a nor R2014b support using Visual Studio 2019. The newest Visual Studio that either one supported was VS 2013 Professional ( not Community or Express !! )
mex -setup has a limited list of compilers to search for, and it searches for exact versions. It does not look for "the most recent Visual Studios", it looks for those specific Visual Studios.
Over the years, the directory structure of the Visual Studios implementations has changed, so you have to know which version you are working with in order to set up the file names properly.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!