How to make this string a = '(0 0 0)' into a double b = [0 0 0]?
조회 수: 2 (최근 30일)
이전 댓글 표시
Suppose I don't know what are the number inside the a string, it could be:
a = '(12 2.8 1.22)' % each number is separated by a single space
which should then be:
b = [12 2.8 1.22]
댓글 수: 0
채택된 답변
Kevin Holly
2022년 8월 5일
a = '(12 2.8 1.22)'
a = strrep(a,')',']');
a = strrep(a,'(','[');
b = str2num(a)
추가 답변 (1개)
Fangjun Jiang
2022년 8월 5일
편집: Fangjun Jiang
2022년 8월 5일
a = '(12 2.8 1.22)';
b=sscanf(a,'(%f %f %f)')
b=transpose(sscanf(a,'(%f %f %f)'))
댓글 수: 2
참고 항목
카테고리
Help Center 및 File Exchange에서 String에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!