MATLAB: WHAT does this mean

blms

Undefined function 'd' for input arguments of type 'double'.

Best Answer

This probably means that you are referring to something like
d(3,3)
while the variable d does not exist.
You might have cleared it somewhere before calling it, or it may not have existed at all.
Related Question