Is there any way to debug compiled components using Matlab Debugger?

前端 未结 3 749
醉话见心
醉话见心 2021-01-20 22:16

Is there a way in which I can debug my compiled Matlab components, using native Matlab debugger, like Visual Studio \"Attach to process\" option, or something like that?

3条回答
  •  执念已碎
    2021-01-20 22:47

    You can't debug them in the sense of being able to step through the MATLAB code line by line, as you can with MATLAB's own debugger prior to compilation. One of the steps that the MATLAB deployment products take is to encrypt the MATLAB code (so you can preserve your IP when distributing the deployed component). The ability to step through the code in a debugger after deployment would defeat the purpose of that.

提交回复
热议问题