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

13 views (last 30 days)
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!

Accepted Answer

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

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!