Errors in launching classificationLearner
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
R
2024-5-21
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.
回答(1 个)
Shivani
2024-5-21
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!
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!