If matlab -desktop elseif matlab -nodesktop

17 vues (au cours des 30 derniers jours)
Andrea Stevanato
Andrea Stevanato le 23 Juin 2018
Commenté : Jan le 29 Juil 2020
How i can check if my scripts/functions running with gui matlab or not? something like this:
if "matlab -desktop"
%
else
%
end

Réponse acceptée

Jan
Jan le 23 Juin 2018
  3 commentaires
Edward
Edward le 27 Juil 2020
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 le 29 Juil 2020
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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Environment and Settings dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by