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!
|
|
|
|||||||||||||
|
|
With slight modification, the answer above works with arrays of arbitrary dimension (1d, 2d, 3d, ...):
Or, written as a single line:
|
|||
|
|
|
It helps if we first understand some more backround:
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. |
|||
|
|
|
Here's a version that will handle a non-scalar "values" array:
Or a version that returns a numeric type (e.g. int, float) if the input is scalar:
|
|||
|
|