How can I read a txt file and split its content into a strings array and a data array?

8 Ansichten (letzte 30 Tage)
The txt file has information similar to the one below. A would like to have an array of strings (headerline) and an (N X 4) array of data.

Antworten (2)

Walter Roberson
Walter Roberson am 25 Jul. 2018
Bearbeitet: Walter Roberson am 25 Jul. 2018
fid = fopen(filename, 'rt');
headers = string( strsplit( fgetl(fid), ';') );
data = cell2mat( textscan(fid, '%f%f%f%f', 'Delimiter', ';', 'collectoutput', 1) );
fclose(fid);

Ashan Walpitage
Ashan Walpitage am 22 Sep. 2021
Try with readtable function
mydata = readtable( file_path )

Kategorien

Mehr zu Cell Arrays finden Sie in Help Center und File Exchange

Produkte


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by