MATLAB: Does MCC actualy convert the m code to C or just create C wrappers

MATLAB Compilermcc

The documentation says that mcc can create optional binary files. Is that the compiled C code that was generated from the .m file?

Best Answer

If you are looking at the -T (target) option, then it is talking about the wrappers. The .m files are not converted into C code by the MATLAB Compiler. Converting into C code requires the MATLAB Coder product.