MATLAB: Single array inside cell to double

doublesingle

How can I convert attached file to double, thanks in advance any help.

Best Answer

If you want to convert each matrix inside the TEMP cell array to double, then:
something = cellfun(@double, TEMP, 'UniformOutput', false);