MATLAB: Num2str error I am using 2014b, and a script was written on 2011b. The error is pretty random since it is a mathworks code I am getting. Error in num2str (line 66) xmax = double(max(abs(widthCopy(:)))); Not sure what to do! Best Answer You get this error if you try to use num2str with a cell formats={'123'}out=num2str(s)s should be a numbers=123out=num2str(s)or a strings='123'out=num2str(s) Related QuestionStr2num errorError with using sprintfHow to use Num2strError in using strcmpHow to delete a cell in gui
Best Answer