Is there a way to disable plotting in Compiled Matlab code (using MCR)

조회 수: 2 (최근 30일)
Carl
Carl 2015년 4월 2일
답변: Jeff E 2015년 4월 2일
I have some compiled matlab code I'd like to run in a batch mode. Is there any way to disable all plotting functionality when running the code, or do I have to recompile everything?

답변 (1개)

Jeff E
Jeff E 2015년 4월 2일
The function ISDEPLOYED returns true when run in the MCR, false when run in Matlab
So,
if ~isdeployed
plot([1 2] , [2 3])
end

카테고리

Help CenterFile Exchange에서 MATLAB Compiler에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by