Check if values in array fall within certain integer of values in another array
Mostrar comentarios más antiguos
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)
Respuesta aceptada
Más respuestas (1)
David Hill
el 26 de Oct. de 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)));
Categorías
Más información sobre Resizing and Reshaping Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!