Deleting Some initials of The Matrix

1 view (last 30 days)
I have data as given in the above picture.I want to delete the selected part ( Bluish part in the picture) and consider all other matrix (excluding that bluish part),for my analysis. Is there any way of doing it??Because I have 100s of these types of text files and I can't delete this part ( bluish part in the picture) by going to each indivdual text file one by one.Any help will be really appreciated because It will save alot of hardwork and time.
Thank You

Accepted Answer

Star Strider
Star Strider on 25 Oct 2020
It depends on the functions you have available. It appears to be a text file, so one option would be textscan:
fidi = fopen('YourFile.txt,'rt');
Datac = textscan(fidi, '%f%f%f%f', 'HeaderLines',9, 'CollectOutput',1);
Data = cell2mat(Datac);
Likely the best option otherwise would be readmatrix, introduced in R2019a.

More Answers (0)

Categories

Find more on Data Import and Export in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!