MATLAB: From cell array to number

cell arrayconvert

Hello, I have a 1×1 cell array with contents {'0008632'} I would like to convert it to the number 8632. How can I do that?

Best Answer

str2double(C)