How to make this string a = '(0 0 0)' into a double b = [0 0 0]?
3 ビュー (過去 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!