フィルターのクリア

-nojvm option

83 ビュー (過去 30 日間)
Daniel Shub
Daniel Shub 2012 年 5 月 22 日
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?

回答 (2 件)

Thomas
Thomas 2012 年 5 月 22 日
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 件のコメント
Daniel Shub
Daniel Shub 2012 年 5 月 22 日
Does the JVM affect anything other than the display?
Thomas
Thomas 2012 年 5 月 22 日
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

サインインしてコメントする。


Sean de Wolski
Sean de Wolski 2012 年 5 月 22 日
Compare:
* doc mtimes;
* plot(1:10);
* edit linespec
  2 件のコメント
Daniel Shub
Daniel Shub 2012 年 5 月 22 日
This is all display related. I am interested in non-display aspects (if any) of the JVM.
Sean de Wolski
Sean de Wolski 2012 年 5 月 22 日
Some things that use an API, e.g. URLREAD

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by