Errors in launching classificationLearner
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I tried with both R2019b and R2023b but when running classificationLearner, it crashed with the followings:
Error using matlab.internal.cef.webwindow
MATLABWindow application failed to launch. Unable to launch the MATLABWindow application. The exit code was: -1073741819
Error in matlab.internal.webwindow/createImplementation (line 327)
implObj = matlab.internal.cef.webwindow(varargin{:});
Error in matlab.internal.webwindow (line 163)
obj.impl = obj.createImplementation(varargin{:});
Error in matlab.ui.container.internal.AppContainer/buildWindow (line 2244)
window = matlab.internal.webwindow(url, this.getOpenPort());
Error in matlab.ui.container.internal.AppContainer/set.Visible (line 733)
this.Window = this.buildWindow(windowBounds);
Error in mlearnapp.internal.adapterlayer.ToolGroup/makeVisible (line 217)
this.PrivateToolGroup.Visible = true;
Error in mlearnapp.internal.ui.DialogFactory/createMLearnAppWindow (line 20)
toolGroup.makeVisible();
Error in classificationLearner (line 104)
hApp = dialogFactory.createMLearnAppWindow(session, newSessionCreatorFactory, importTestDataCreatorFactory, appTag, appTitleMessage, problemDependentToolstripFactory, metricFactory, mainThreadBusyTracker);
Please help with this issue. Thank you very much!
2 Kommentare
R
am 21 Mai 2024
Are you using any anti-virus software which could potentially cause MATLABWindow.exe to fail to launch? If yes, try adding MATLABWindow.exe to the trusted programs list of their antivirus and see if that helps.
Antworten (1)
Shivani
am 21 Mai 2024
You may be encountering this error since you are using Trend Micro security software. This error occurs because MATLAB utilizes a Chrome-based browser internally for rendering various graphical elements. This functionality may be impeded by Trend Micro’s blocking mechanisms.
You can refer to this MATLAB Answer thread for more information on resolving this issue:
If you are not using Trend Micro Security, then you can determine the exact cause of the issue by following the troubleshooting step below:
Run the following command in the MATLAB command window:
cd(matlabroot)
cd bin\win64
!.\MATLABWindow.exe
- If you receive a blank window that disappears without throwing any error message, then it is likely that the issue you are facing is due to a firewall or an antivirus software blocking MATLAB.
- If there was a crash or other issues internal to MATLAB, there would be error messages in the logging output. In this case, try reinstalling MATLAB as this may resolve the issue.
Hope this resolves your error!
Siehe auch
Kategorien
Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!