extract every tenth row from a long text file with 3 column
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Akim Mahmud
am 20 Dez. 2017
Kommentiert: Akim Mahmud
am 20 Dez. 2017
Hi I have a big text file with like 1000000 rows and 3 column and I imported using the importdata function. Now I want to extract/read only every 10th row from the file using a loop. Any help ? Thanks
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 20 Dez. 2017
You forgot to attach the file, but basically I'm guessing you'd do:
data = importdata(filename);
% Non-loop way:
data10 = data(1:10:end, :);
% Loop way
[rows, columns] = size(data);
data10 = zeros(ceil(rows/10), columns);
thisRow = 1;
for row = 1 : 10 : rows
data10(thisRow, :) = data(row, :);
thisRow = thisRow + 1;
end
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis 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!