MATLAB: Dumb mistakes we make with MATLAB.

discussionlasterrlasterror

O.k., admit it. Who has done this (or something that resulted in the same loss of info) before?
>> laster
??? Undefined function or variable 'laster'.
>> lasterr
ans =
Undefined function or variable 'laster'.
D'Oh! I need a ERRORBEFORELASTERR function.
What's one of your dumb MATLAB mistakes?

Best Answer

Entering
>> rand(100000)
instead of
>> rand(100000,1)
Hm. Why has my whole machine come to a grinding halt?
Related Question