If matlab -desktop elseif matlab -nodesktop

6 visualizzazioni (ultimi 30 giorni)
Andrea Stevanato
Andrea Stevanato il 23 Giu 2018
Commentato: Jan il 29 Lug 2020
How i can check if my scripts/functions running with gui matlab or not? something like this:
if "matlab -desktop"
%
else
%
end

Risposta accettata

Jan
Jan il 23 Giu 2018
  3 Commenti
Edward
Edward il 27 Lug 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 il 29 Lug 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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Get Started with MATLAB in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by