You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this can lead to unpredictable behaviour (specifically, other unrelated warnings unexpectedly not being raised) if an error occurs while running stuff(). It would be better to check explicitly for the warning conditions. For example, instead of
warning off
mkdir(dirname)
warning on
it should read
if ~exist(dirname,'dir')
mkdir(dirname)
end
This needs to be replaced in a number of places. As a somewhat weaker alternative, in some places specific warnings could be disabled instead of all warnings e.g. suppressing divide by zero warnings
The text was updated successfully, but these errors were encountered:
In general, the pattern
this can lead to unpredictable behaviour (specifically, other unrelated warnings unexpectedly not being raised) if an error occurs while running
stuff()
. It would be better to check explicitly for the warning conditions. For example, instead ofit should read
This needs to be replaced in a number of places. As a somewhat weaker alternative, in some places specific warnings could be disabled instead of all warnings e.g. suppressing divide by zero warnings
The text was updated successfully, but these errors were encountered: