How can I convert cell contents to a matrix?

1 Ansicht (letzte 30 Tage)
Jacob Lobao
Jacob Lobao am 21 Mär. 2019
Kommentiert: Jacob Lobao am 21 Mär. 2019
I am trying to import text files, and convert it's data into a matrix. When I import the file, it stores it as a 50x1 cell, how can I convert this to a 50x9 or 50x10 matrix, where I can reference each aspect of the file individually?
fid = fopen ('40_8deg_HL_Both.txt', 'r');
data = textscan(fid, '%s', 'HeaderLines', 9, 'delimiter', '/n');
fclose (fid);
mat = data{:};
  3 Kommentare
Stephen23
Stephen23 am 21 Mär. 2019
@Jacob Lobao: please upload a sample file by clicking the paperclip button.
Jacob Lobao
Jacob Lobao am 21 Mär. 2019
This is the file used in the script^

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 21 Mär. 2019
Bearbeitet: Andrei Bobrov am 21 Mär. 2019
T = readtable('40_8deg_HL_Both.txt','ReadVariableNames',false,...
'Format','%{yyyyMMdd hh:mm:ss.SSS}D %f %f %f %f %f %f %f %q',...
'HeaderLines',9);
and please attach your txt-file.

Weitere Antworten (1)

KSSV
KSSV am 21 Mär. 2019
Read about readtable. This is the best function to use for your case.

Kategorien

Mehr zu Data Type Conversion 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