How do I detect if MATLAB was started -nojvm from a mex extension
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
For debugging a mex extension under Linux MATLAB is typically run -nojvm.
However, when run this way stdout/stderr (cout/cerr) no longer need to be redirected / captured. It would be useful to detect this so that code to to this is disabled to simplify debugging.
0 Commenti
Risposte (1)
Serge
il 29 Nov 2022
if usejava('desktop')
%with java, ie normal
else
%no java, ie -nojvm
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Startup and Shutdown in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!