-nojvm option

112 views (last 30 days)
Daniel Shub
Daniel Shub on 22 May 2012
You can start MATLAB with a number of flags one of which is -nojvm which starts MATLAB without the Java virtual machine. One of the obvious effects of -nojvm is that there is no desktop, but you can get that with the -nodesktop and/or -nodisplay flags. What are the advantages and disadvantages of starting MATLAB without the JVM?
EDIT
The type of things I am interested in are effects of -nojvm beyond the effects you get with -nodesktop and -nodisplay. For example, if you use -nojvm then the SOUND function uses alternative code.
Some open question that I do not know the answers to are Is the JVM needed for importing java objects? Does JIT acceleration require the JVM? Does multithreading work without the JVM? What type of applications go faster without the JVM?

Answers (2)

Thomas
Thomas on 22 May 2012
Daniel,
the -nodesktop starts MATLAB without bringing up the MATLAB desktop. The JVM software is started. Use the current window in the operating system to enter commands. * Will still work with graphics (you can use the plot commands)*
-nodisplay: also starts the JVM and does not start the desktop in addition it also ignores Commands and the DISPLAY environment variable in LINUX. (will not work with graphics because of X limitations I presume)
-nojvm does not start the JVM software and uses current window. Graaphics will not work without the JVM
More info here:
  2 Comments
Daniel Shub
Daniel Shub on 22 May 2012
Does the JVM affect anything other than the display?
Thomas
Thomas on 22 May 2012
http://www.mathworks.com/help/techdoc/matlab_external/f98533.html
The MATLAB Java interface enables you to:
Access Java API (application programming interface) class packages that support essential activities such as I/O and networking. For example, the URL class provides convenient access to resources on the Internet.
Access third-party Java classes
Easily construct Java objects in MATLAB workspace
Call Java object methods, using either Java or MATLAB syntax
Pass data between MATLAB variables and Java objects

Sign in to comment.


Sean de Wolski
Sean de Wolski on 22 May 2012
Compare:
* doc mtimes;
* plot(1:10);
* edit linespec
  2 Comments
Daniel Shub
Daniel Shub on 22 May 2012
This is all display related. I am interested in non-display aspects (if any) of the JVM.
Sean de Wolski
Sean de Wolski on 22 May 2012
Some things that use an API, e.g. URLREAD

Sign in to comment.

Categories

Find more on Startup and Shutdown in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!