You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module_->error("InterfaceWithMatlab: Detected an error in the Matlab code, the matlab engine is still running and caught the exception");
714
-
module_->error("InterfaceWithMatlab: Please check the matlab code in the GUI and try again. The output window in the GUI should contain the reported error message generated by matlab");
"InterfaceWithMatlab: Detected an error in the Matlab code, the matlab engine is still running and caught the exception\n" <<
719
+
"InterfaceWithMatlab: Please check the matlab code in the GUI and try again. The output window in the GUI should contain the reported error message generated by matlab";
module_->error(std::string("InterfaceWithMatlab: Could not open matlab engine (error=") + matlab_engine_->geterror() + std::string(")"));
837
-
module_->error(std::string("InterfaceWithMatlab: Make sure the matlab engine has not been disabled in [SCIRUN_DIRECTORY]/services/matlabengine.rc"));
838
-
module_->error(std::string("InterfaceWithMatlab: Press the 'Edit Local Config of Matlab Engine' to change the configuration"));
839
-
module_->error(std::string("InterfaceWithMatlab: Check remote address information, or leave all fields except 'session' blank to connect to local matlab engine"));
840
-
841
-
matlab_engine_ = 0;
846
+
std::ostringstream ostr;
847
+
ostr << "InterfaceWithMatlab: Could not open matlab engine (error=" << matlab_engine_->geterror() << ").\n" <<
848
+
"Make sure the matlab engine has not been disabled in [SCIRUN_DIRECTORY]/services/matlabengine.rc\n" <<
849
+
"Press the 'Edit Local Config of Matlab Engine' to change the configuration.\n" <<
850
+
"Check remote address information, or leave all fields except 'session' blank to connect to local matlab engine.";
0 commit comments