how to use cell function to convert string to number
이전 댓글 표시
I have a cell array a = { 'a' '0' ; 'b' '1' ; 'c' '2' ; 'd' '3'}
so a = 'a' '0'
'b''1'
'c''2'
how can I convert the second column from string to number and should retain the cell array?
채택된 답변
추가 답변 (1개)
Azzi Abdelmalek
2015년 6월 11일
a = { 'a' '0' ; 'b' '1' ; 'c' '2' ; 'd' '3'}
a(:,2)=cellfun(@str2double,a(:,2),'un',0)
댓글 수: 2
Supraja Murali
2018년 12월 20일
Can you explain what 'un' and '0' are in the answer above?
madhan ravi
2018년 12월 20일
un-> UniformOutput 0-> false
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!