How can I read a txt file and split its content into a strings array and a data array?
    9 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
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.

0 Commenti
Risposte (2)
  Walter Roberson
      
      
 il 25 Lug 2018
        
      Modificato: Walter Roberson
      
      
 il 25 Lug 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
 il 22 Set 2021
        Try with readtable function
mydata = readtable( file_path )
0 Commenti
Vedere anche
Categorie
				Scopri di più su Cell Arrays in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!