Is there a script function or variable to determine if running on desktop?
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Craig Anderson
il 21 Mar 2018
Risposto: Benjamin Großmann
il 24 Apr 2018
I have a script which I run from the Matlab desktop/display. I wish to run it from the Linux command line without the desktop (using the -nodesktop option). But there are functions in the script which exit if running without the Matlab desktop. Is there a way in the script to not execute those commands if not running on the desktop?
2 Commenti
Stephen23
il 21 Mar 2018
"...there are functions in the script which exit if running without the Matlab desktop."
Have you tried a judicious application of try and catch ?
Risposta accettata
Benjamin Großmann
il 24 Apr 2018
From the documentation:
USED = desktop('-inuse') % returns whether or not the Desktop is currently in use. It does not start the Desktop.
This function returns a logical value which you could use for some conditional statements.
0 Commenti
Più risposte (0)
Vedere anche
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!