| Contents | Index |
Note lasterror will be removed in a future version. You can obtain information about any error that has been generated by catching an MException. See Capturing Information About the Error in the Programming Fundamentals documentation. |
s = lasterror
s = lasterror(err)
s = lasterror('reset')
s = lasterror returns a structure s containing information about the most recent error issued by the MATLAB software. The return structure contains the following fields:
| Fieldname | Description |
|---|---|
message | Character array containing the text of the error message. |
identifier | Character array containing the message identifier of the error message. If the last error issued by MATLAB had no message identifier, then the identifier field is an empty character array. |
stack | Structure providing information on the location of the error. The structure has fields file, name, and line, and is the same as the structure returned by the dbstack function. If lasterror returns no stack information, stack is a 0-by-1 structure having the same three fields. |
The fields of the structure returned in stack are
| Fieldname | Description |
|---|---|
file | Name of the file in which the function generating the error appears. This field is the empty string if there is no file. |
name | Name of the function in which the error occurred. If this is the primary function in the file, and the function name differs from the file name, name is set to the file name. |
line | Line number of the file at which the error occurred. |
See Message Identifiers in the MATLAB Programming Fundamentals documentation for more information on the syntax and usage of message identifiers.
s = lasterror(err) sets the last error information to the error message and identifier specified in the structure err. Subsequent invocations of lasterror return this new error information. The optional return structure s contains information on the previous error.
s = lasterror('reset') sets the last error information to the default state. In this state, the message and identifier fields of the return structure are empty strings, and the stack field is a 0-by-1 structure.
MathWorks is gradually transitioning MATLAB error handling to an object-oriented scheme that is based on the MException class. Although support for lasterror is expected to continue, using the static last method of MException is preferable.
Warning lasterror and MException.last are not guaranteed to always return identical results. For example, MException.last updates its error status only on uncaught errors, where lasterror can update its error status on any error, whether it is caught or not. |
Save the following MATLAB code in a file called average.m:
function y = average(x)
% AVERAGE Mean of vector elements.
% AVERAGE(X), where X is a vector, is the mean of vector elements.
% Nonvector input results in an error.
check_inputs(x)
y = sum(x)/length(x); % The actual computation
function check_inputs(x)
[m,n] = size(x);
if (~((m == 1) || (n == 1)) || (m == 1 && n == 1))
error('AVG:NotAVector', 'Input must be a vector.')
endNow run the function. Because this function requires vector input, passing a scalar value to it forces an error. The error occurs in subroutine check_inputs:
average(200) Error using average>check_inputs (line 11) Input must be a vector. Error in average (line 5) check_inputs(x)
Get the three fields from lasterror:
err = lasterror
err =
message: [1x61 char]
identifier: 'AVG:NotAVector'
stack: [2x1 struct]
Display the text of the error message:
msg = err.message
msg =
Error using average>check_inputs (line 11)
Input must be a vector.Display the fields containing the stack information. err.stack is a 2-by-1 structure because it provides information on the failing subroutine check_inputs and also the outer, primary function average:
st1 = err.stack(1,1)
st1 =
file: 'd:\matlab_test\average.m'
name: 'check_inputs'
line: 11
st2 = err.stack(2,1)
st2 =
file: 'd:\matlab_test\average.m'
name: 'average'
line: 5Note As a rule, the name of your primary function should be the same as the name of the file that contains that function. If these names differ, MATLAB uses the file name in the name field of the stack structure. |
lasterror is often used in conjunction with the rethrow function in try-catch statements. For example,
try do_something catch do_cleanup rethrow(lasterror) end
assert | catch | dbstack | error | last(MException) | lastwarn | MException | rethrow | try
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |