User`s guide
Programming
19-25
name: '@()error('* Error *')'
line: 1 % V7.4 response
line: 0 % V7.5 response
Compatibility Considerations
If you have programs that rely on the line number returned in response to an error in an
anonymous function, these programs may not work as expected. Remove dependencies on
the returned error message and line number, or update your program code to use the new
string and value.
New Message In Response to Ctrl+C
MATLAB now displays a more user-friendly message when you press Ctrl+C. The
previous response to Ctrl+C was
Error in ==> testctrlc>waitawhile at 5
pause(100);
Error in ==> testctrlc at 2
waitawhile
In this and future releases, pressing Ctrl+C still halts program execution, but now
displays the response
??? Operation terminated by user during ==> testctrlc>
waitawhile at 5
In ==> testctrlc at 2
waitawhile
Compatibility Considerations
You only need to be aware that the change in the text of this message is intentional and
does not signify any error on your part.
hdfread Errors Instead of Warns on I/O Failures
In previous releases, hdfread issued a warning when a requested I/O operation failed. In
addition, hdfread created an empty variable in the workspace. In this release, hdfread
now errors when a requested I/O operation fails and does not create an empty variable in
the workspace.