Check if values in array fall within certain integer of values in another array

8 visualizzazioni (ultimi 30 giorni)
Let's say I have a set of numbers in array A
11
22
35
41
and another set of numbers in array B
3
11
45
I want to check whether the numbers in A are within a certain number (say, 10) of any numbers in array B. 11 fits this criterion, since it is within 10 of both 3 and 11. 35 fits this criterion because it is within 10 of 45, likewise for 41. 22 is not within 10 of any number in B, so 22 would not meet this criterion.
How could I do this with a loop, for any lengths of A and B? (B could also be bigger than A, for example). I essentially want to loop over the values in A, checking if each one is within 10 of any value in B? (If so, then I have a command I would like to perform within the loop with each respective number in A)

Risposta accettata

Star Strider
Star Strider il 26 Ott 2019
The ismembertol funciton is also an option:
A = [11
22
35
41];
B = [ 3
11
45];
[LA,LB] = ismembertol(A, B, 10, 'DataScale',1);
MeetsCriteria = A(LA)
DoesNotMeetCriteria = A(~LA)
producing:
MeetsCriteria =
11
35
41
DoesNotMeetCriteria =
22
Experiment to get the result you want.

Più risposte (1)

David Hill
David Hill il 26 Ott 2019
C lists all elements of A within +-10 of any value of B.
C=A(find(arrayfun(@(x)sum(abs(B-x)<=10),A)));

Categorie

Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by