Converting cell data to a matrix

2 vues (au cours des 30 derniers jours)
charles atlas
charles atlas le 18 Nov 2011
I have one column of cell data in Matlab that reads the following:
11:32:44.69 InAir 0.00 Steady 0.00 -1.06 0.00 1.00
11:32:44.694 InAir 0.00 Steady 0.00 -0.34 0.00 0.93
11:32:44.694 InAir 0.00 Steady 0.00 -0.58 0.00 1.01
Etc.
The actual code goes on for thousands of rows. My following code reads this data in from a file: X= importdata('file1.txt'); A=(1:1:7); X(A,:)=[]; %gets rid of the first 7 lines of headers
How do I convert this one column of cell data into multiple columns with time, “inAir”, 0.00, “steady”, etc?

Réponse acceptée

Walter Roberson
Walter Roberson le 18 Nov 2011
regexp(X, ' ', 'split')
I would suggest, though, that instead you use
fid = fopen('file1.txt','rt');
X = textscan(fid,'%s%s%f%s%f%f%f%f','HeaderLines',7);
close(fid);
Then, X{1} will be the first column, X{2} will be the second, and so on.
  1 commentaire
charles atlas
charles atlas le 18 Nov 2011
That second code worked perfectly. Thank you so much

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by