using matlab fileread function for some portion of text data
    8 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    sermet OGUTCU
 il 23 Ago 2021
  
    
    
    
    
    Risposto: Simon Chan
      
 il 23 Ago 2021
            data = regexp(fileread(full_file_name),'\n','split');
end_of_header_line = find(contains(data,'*  ')); 
I find the row number of the end of header part section in text file using the above codes. The end of header part section always situated in the beginning parts of the text file. Is there a way to use fileread with only the some portions of text file (for example from the first line to 50th line) insted of the whole text file? 
If this is not possible, is there a way to read a few portion of text data for extracting the line number of specific string?  
1 Commento
Risposta accettata
  Simon Chan
      
 il 23 Ago 2021
        Use function textscan to read the first 50 lines and the header will be stored on a cell array.
fid = fopen(fullfile(filepath,filename), 'r');
header = textscan(fid, '%[^,\n]', 50);                                       % Read the first 50 header lines     
fclose(fid);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Standard File Formats 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!


