How to make this string a = '(0 0 0)' into a double b = [0 0 0]?
3 views (last 30 days)
Show older comments
Wictor Oliveira
on 5 Aug 2022
Commented: Walter Roberson
on 5 Aug 2022
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 Comments
Accepted Answer
Kevin Holly
on 5 Aug 2022
a = '(12 2.8 1.22)'
a = strrep(a,')',']');
a = strrep(a,'(','[');
b = str2num(a)
More Answers (1)
Fangjun Jiang
on 5 Aug 2022
Edited: Fangjun Jiang
on 5 Aug 2022
a = '(12 2.8 1.22)';
b=sscanf(a,'(%f %f %f)')
b=transpose(sscanf(a,'(%f %f %f)'))
2 Comments
See Also
Categories
Find more on String in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!