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

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.

Respuestas (2)

fid = fopen(filename, 'rt');
headers = string( strsplit( fgetl(fid), ';') );
data = cell2mat( textscan(fid, '%f%f%f%f', 'Delimiter', ';', 'collectoutput', 1) );
fclose(fid);

Categorías

Productos

Versión

R2018a

Preguntada:

el 25 de Jul. de 2018

Respondida:

el 22 de Sept. de 2021

Community Treasure Hunt

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

Start Hunting!

Translated by