Convert cell into double
조회 수: 1 (최근 30일)
이전 댓글 표시
{'22,1'}
{'22,1'}
{'21,8'}
{'22,0'}
I hae extrated those data from TXT file. I tried to use
% T.(i) = str2double(T{:,i});
no working
I tried to use
str2num(char({'21,8'}))
I want instead 21.8 and repeat the format for the whole colonn
댓글 수: 0
답변 (1개)
David Hill
2022년 11월 23일
Try using the following.
m=readmatrix('yourData.txt','DecimalSeparator',',');
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Conversion에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!