Faster Looping for Griding/Binning Data

7 Ansichten (letzte 30 Tage)
edward kabanyas
edward kabanyas am 31 Okt. 2020
Beantwortet: Bruno Luong am 1 Nov. 2020
Hi all;
I want to grid my data with following code:
Lat=data(:,7);
Lon=data(:,8);
vprg=data(:,9);
test1=[vprg Lon Lat];
latedges=-10:0.1:10;
lonedges=80:0.1:160;
test2 = zeros(numel(lonedges)-1,numel(latedges)-1);
for i=1:numel(lonedges)-1,
for j=1:1:numel(latedges)-1,
test2(i,j)=size(test1(test1(:,2)>=lonedges(i) & test1(:,2)< lonedges(i+1) & test1(:,3)>= latedges(j) & test1(:,3)< latedges(j+1),:),1);
end
end
However, it is very slow. Probably, there is another option to make it faster. Thank you for your hep.
EK

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 1 Nov. 2020
test2 = histcounts2(test1(:,2),test1(:,3),lonedges,latedges)

Weitere Antworten (1)

Sindar
Sindar am 1 Nov. 2020
check out discretize

Kategorien

Mehr zu Loops and Conditional Statements 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!

Translated by