How to extract specific rows & columns from a text file
10 views (last 30 days)
Show older comments
Hi, I would like to read specific column from txt file (values - 4.682,6.050,6.461 and so on) and it have 25 lines. So how can I do it?
Thanks.
Here is the txt file looks like:
2008 1 1 0.00 100.00 0.41873E+11 -1.0 263.9 0.27177E+12 3.208 4.682 -1.000 4.0
2008 1 1 1.00 100.00 0.65528E+11 -1.0 278.2 0.45383E+12 2.997 6.050 -1.000 4.0
2008 1 1 2.00 100.00 0.83093E+11 -1.0 300.3 0.51760E+12 2.763 6.461 -1.000 4.0
0 Comments
Accepted Answer
KSSV
on 24 May 2021
Read about the functions like importdata, load, readmatrix, textscan, readtable.
data = importdata(mytextfile) ;
iwant = data(:,11) ; % give required column of index
2 Comments
More Answers (0)
See Also
Categories
Find more on Text Files 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!