Comma separated value to vector

10 vues (au cours des 30 derniers jours)
Matthew Tyler Jeffries
Matthew Tyler Jeffries le 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].

Réponse acceptée

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

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Tables dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by