If matlab -desktop elseif matlab -nodesktop

조회 수: 5 (최근 30일)
Andrea Stevanato
Andrea Stevanato 2018년 6월 23일
댓글: Jan 2020년 7월 29일
How i can check if my scripts/functions running with gui matlab or not? something like this:
if "matlab -desktop"
%
else
%
end

채택된 답변

Jan
Jan 2018년 6월 23일
  댓글 수: 3
Edward
Edward 2020년 7월 27일
I don't understand from this answer what is the correct conditional to use to check whether or not Matlab was launched without the desktop. Can you please elaborate?
Jan
Jan 2020년 7월 29일
if usejava('desktop')
disp('This Matlab instance runs with a desktop')
else
% No message here due to the missing comamnd window.
end
Alternatively:
if java.lang.System.getProperty('java.awt.headless')
% No command window...
else
disp('This Matlab instance runs with a desktop')
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by