MATLAB: Converting uint32 to cell

cellconversionmatrixuint32

after operating the command
c4 = transpose( [ arrayl{:,4} ] );
in a matrix , c4 returns a columns of numbers (for more, refer to http://www.mathworks.in/matlabcentral/answers/35528-reading-numbers-from-an-unknown-format)
but the output is in uint32 format and i need to get it converted to cell format , suggestions please

Best Answer

array1(:,4)
seems to be what you are describing.
Related Question