MATLAB: Does MATLAB cause the CPU to spike even when MATLAB is idle in MATLAB 8.0 (R2012b)

cpuMATLABprocessresourcessystem

Using the Linux "top" command, I can see that MATLAB is using a great deal of the CPU, even when MATLAB is idle, i.e. not running any programs.
After some time (sometimes 45 minutes, sometimes a couple of hours) of opening a session of MATLAB, MATLAB's CPU usage will spike for a few seconds (2-5 seconds) and then drop for a few seconds. This will continue to happen until MATLAB is closed.

Best Answer

This is a bug in MATLAB 8.0 (R2012b) and later releases. This issue may appear in MATLAB R2012a as well. This issue may be related to the new Help browser.
Beginning in MATLAB R2012b, the Help Browser uses a different renderer called the JxBrowser, which provides an enhanced help browsing experience. Because this may be an issue with the JxBrowser, try disabling the JxBrowser and instead use the HTML renderer (which may provide a slightly degraded Help Browser experience).
Launch a new session of MATLAB, and try to disable JxBrowser completely during this session, which can be done by executing the following command at the beginning of a MATLAB session:
 
com.mathworks.mlwidgets.html.HtmlComponentFactory.setDefaultType('HTMLRENDERER');
This will set a preference disabling JxBrowser, which can be undone with the command:
 
com.mathworks.mlwidgets.html.HtmlComponentFactory.setDefaultType([]);
NOTE: This bug has been fixed in MATLAB R2015a and later versions. Here is a link to its external bug report:
https://www.mathworks.com/support/bugreports/914291