MATLAB: Does the command “load_syst​em(‘Simuli​nk’)” no longer work in Simulink 6.0 (R14)

caseload_systemopen_systemsensitivesimulink

For previous versions of Simulink, I was able to use the following command without a problem.
load_system('Simulink')
However, the OPEN_SYSTEM function works
open_system('Simulink')
I expected MATLAB to be able to load the "simulink.mdl" model and throw a warning message.

Best Answer

This bug has been fixed in Release 14 Service Pack 2 (R14SP2). For previous releases, please read below for any possible workarounds:
We have verified that there is a bug in Simulink 6.0 (R14) in the way that LOAD_SYSTEM handles the "simulink.mdl" model. Notice the lower case 's' in the example below.
To work around this issue, try specifying the model name case exactly.
load_system('simulink');