MATLAB: DivideByZero warning does not show up when dividing by zero.

dividebyzero warning divide by zero

I am working with MATLAB 2011a, and I do not see the MATLAB:divideByZero warning appearing when I do divide by zero, though I set the divideByZero warning on with:
warning on MATLAB:divideByZero
I tried it with MATLAB 2009, and the warning appeared in this release. Unfortunately, I need to have it working on 2011a.
How can I get this warning to appear?

Best Answer

The following is in the Release Notes for R2009b. However, explicitly turning on the warning does not enable it for me, in R2011a. I don't see the warning on the screen, or using the lastwarn() function.
Divide By Zero and Log Of Zero Warnings Off By Default
MATLAB no longer displays Divide by zero and Log of zero warnings unless you explicitly enable them with the following commands:
warning on MATLAB:divideByZero
warning on MATLAB:log:LogOfZero
This only affects the display of the warning message on the screen; the warning status is still updated as usual.
Related Question