How to extract specific rows & columns from a text file
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
KSSV
am 24 Mai 2021
Read about the functions like importdata, load, readmatrix, textscan, readtable.
data = importdata(mytextfile) ;
iwant = data(:,11) ; % give required column of index
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Text Files finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!