Filter löschen
Filter löschen

finding the closest values in a set of data

1 Ansicht (letzte 30 Tage)
Michael
Michael am 9 Jun. 2011
basically i have 2 sets of data:
A = [4; 7; 13; 44; 55;];
B = 1; 3; 8; 9; 33; 45; 48; 53; 54; 66];
I want to compare every value in A to every value in B, and then have MATLAB figure out where the closest values of all those in A occur in B. So 4 is closest to 3, 7 is closest to 8, 13 is closest to 9, etc.
I want my output to be an index list in terms of B.. so basically i need:
index = [2; 3; 4; 6; 9]
Is this possible?

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 9 Jun. 2011
[junk,index] = min(bsxfun(@(x,y)abs(x-y),A,B'),[],2);
Of course it's possible!

Weitere Antworten (1)

Fangjun Jiang
Fangjun Jiang am 9 Jun. 2011
A = [4; 7; 13; 44; 55;];
B = [1; 3; 8; 9; 33; 45; 48; 53; 54; 66];
C=bsxfun(@minus,A,B');
[D,Index]=min(abs(C),[],2)

Kategorien

Mehr zu Matrix Indexing 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