convert a string vector to a vector of numbers
5 次查看(过去 30 天)
显示 更早的评论
Hello,
suppose I have a vector of string [1 2 3 4] and i want to change it to a vector of nmbers to do a numeric caculations, How can I do it? Thank's!
2 个评论
Walter Roberson
2013-4-16
Are the '[' and ']' in the string? Are the numbers only integers or possibly floating point ?
回答(1 个)
Friedrich
2013-4-16
编辑:Friedrich
2013-4-16
Hi,
as long there are no [] in the string use textscan:
textscan('1 2 3 4 6.3','%f','delimiter',' ')
In the case there are use strrep to remove the [ or ] before calling textscan.
8 个评论
Walter Roberson
2013-4-16
You have
t(i,n+1)=num2str(c);
the destination t(i,n+1) is a single character. The number 10 and upwards require two (or more) characters to represent as a string. Therefore if c reached 10 (occurrences) the code would fail. This suggests that you have a code design problem.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!