MATLAB: I want to delete all the headerlines and delimiters from the data in the below attached text file

headers

Hello Everyone
I want to delete all the headerlines and delimiters from the data in the below attached text file to execute if-else statements on the data of 2nd and 3rd column of the text file . I am able to delete the headerlines and delimiters only from the first 41 cells of the data.
%% Open the text file
fID = fopen('dil_stress_strain.txt','r');
%% Read columns of data according to the format.
stress=textscan(fID,'%n %n %n','headerlines',7,'Delimiter','');
%% Close the text file.
fclose(fID);
Please help!

Best Answer

The best solution is probably to read your entire file as text, then remove the header lines, then parse them with textscan.