converting uint32 to cell
이전 댓글 표시
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
채택된 답변
추가 답변 (1개)
Jan
2012년 4월 16일
This:
[ arrayl{:,4} ]
converts the elements of the 4th column of the cell array1 explicitly to a vector. If you do not want this conversion, omit it:
c4 = transpose(arrayl(:,4));
Or if you want a {Nx1} cell, see Walter's suggestion.
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!