from
Multicore - Parallel processing on multiple cores
by Markus Buehren
This package realizes parallel processing on multiple cores/machines.
|
| displayerrorstruct(errorStruct)
|
function displayerrorstruct(errorStruct)
%DISPLAYERRORSTRUCT Display structure returned by function lasterror.
% DISPLAYERRORSTRUCT displays the structure returned by function
% LASTERROR. Useful when catching errors.
%
% Example:
% try
% bla; % fails as 'bla' is probably an unknown function
% catch
% displayerrorstruct(lasterror);
% end
%
% Markus Buehren
% Last modified 17.01.2009
%
% See also LASTERROR.
if nargin == 0
errorStruct = lasterror;
end
if ~isempty(errorStruct.message)
disp(errorStruct.message);
end
errorStack = errorStruct.stack;
for k=1:length(errorStack)
disp(sprintf('Error in ==> %s at %d.', errorStack(k).name, errorStack(k).line));
end
|
|
Contact us at files@mathworks.com