convert a string vector to a vector of numbers

1 Ansicht (letzte 30 Tage)
googo
googo am 16 Apr. 2013
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 Kommentare
Walter Roberson
Walter Roberson am 16 Apr. 2013
Are the '[' and ']' in the string? Are the numbers only integers or possibly floating point ?
googo
googo am 16 Apr. 2013
string=['1' '2' '3' '4'] and I want to change it to : a = [1 2 3 4]

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Friedrich
Friedrich am 16 Apr. 2013
Bearbeitet: Friedrich am 16 Apr. 2013
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 Kommentare
Walter Roberson
Walter Roberson am 16 Apr. 2013
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.
googo
googo am 16 Apr. 2013
Thank you... I'll try to find a way to fix it..

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Tags

Noch keine Tags eingegeben.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by