Comma separated value to vector

3 Ansichten (letzte 30 Tage)
Matthew Tyler Jeffries
Matthew Tyler Jeffries am 9 Mai 2019
I have a table where the element in the first row of the second column is "11,333,4445,2,78,2399". I would like to take this element, remove the commas, and turn it into a vector v=[11 333 4445 2 78 2399].

Akzeptierte Antwort

Stephen23
Stephen23 am 9 Mai 2019
>> S = '11,333,4445,2,78,2399';
>> V = sscanf(S,'%f,',[1,Inf])
V =
11 333 4445 2 78 2399
  1 Kommentar
Matthew Tyler Jeffries
Matthew Tyler Jeffries am 9 Mai 2019
Brilliant! This is exactly what I need. Thank you.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Tables finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by