Try/Catch
The try /catch block allows you to stop errors from being returned, and allows another block of code to execute instead of the error.
try
tryBlock
catch exception
catchBlock
end
try
a*2
catch
disp('error occurred')
end