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

조회 수: 10 (최근 30일)
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!

채택된 답변

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Text Files에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by