Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

is there a numpy-thonic way, e.g. function, to find the 'nearest value' in an array? example:

np.find_nearest( array, value )

thanks in advance!

share|improve this question

4 Answers

up vote 52 down vote accepted
import numpy as np
def find_nearest(array,value):
    idx = (np.abs(array-value)).argmin()
    return array[idx]

array = np.random.random(10)
print(array)
# [ 0.21069679  0.61290182  0.63425412  0.84635244  0.91599191  0.00213826
#   0.17104965  0.56874386  0.57319379  0.28719469]

value = 0.5

print(find_nearest(array, value))
# 0.568743859261
share|improve this answer
+1: Tidy answer :-) – Jon Cage Apr 2 '10 at 12:02
3  
I would suggest the more direct return np.abs(array-value).min(). In fact, there is no need for any index, when the nearest element is what is looked for. – EOL Apr 2 '10 at 14:42
3  
@EOL: return np.abs(array-value).min() gives the wrong answer. This gives you the min of the absolute value distance, and somehow we need to return the actual array value. We could add value and come close, but the absolute value throws a wrench into things... – unutbu Apr 2 '10 at 18:51
@~unutbu You're right, my bad. I can't think of anything better than your solution! – EOL Apr 3 '10 at 23:07

With slight modification, the answer above works with arrays of arbitrary dimension (1d, 2d, 3d, ...):

def find_nearest(a, a0):
    "Element in nd array `a` closest to the scalar value `a0`"
    idx = np.abs(a - a0).argmin()
    return a.flat[idx]

Or, written as a single line:

a.flat[np.abs(a - a0).argmin()]
share|improve this answer

It helps if we first understand some more backround:

  • Nearest to what? The value?
  • Is the data ordered in some way?

Personally I'd start with a method to calculate deviation from your current value. I'd then (depending on how the data is currently sorted) work out how most efficiently to search it to find the minimum distance.

share|improve this answer

Here's a version that will handle a non-scalar "values" array:

import numpy as np

def find_nearest(array, values):
    indices = np.abs(np.subtract.outer(array, values)).argmin(0)
    return array[index]

Or a version that returns a numeric type (e.g. int, float) if the input is scalar:

def find_nearest(array, values):
    values = np.atleast_1d(values)
    indices = np.abs(np.subtract.outer(array, values)).argmin(0)
    out = array[indices]
    return out if len(out) > 1 else out[0]
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.