MATLAB: I am looking to extract data from the following .dat file, where the actual data starts from line 14. If anyone knows the code to extract data from this format please let me know!

extract data from .dat file

Best Answer

filename= 'mydata.dat'; %this is your full filename
delimiterIn='\t'; %this is the delimiter, not sure if this correct
headerlinesIn=13; %this is where the header lines, data starts on line 14.
iload=importdata(filename,delimiterIn,headerlinesin)
This may work.