vote up 2 vote down star
1

I have the following array in Python:

points_list = [point0, point1, point2]

where each of points_list is of the type:

class point:
    __init__(self, coord, value):
        self.coord = numpy.array(coord)
        self.value = value
# etc...

And a function:

def distance(x,y):
    return numpy.linalg.norm(x.coord - y.coord)

And I have a point point_a defined elsewhere. Now I want to find the point in points_list that's closest to point_a.

Other than a loop, what's the best way to do this in Python?

flag

1 Answer

vote up 12 vote down check

Have you tried this?

min(points_list, key=lambda x: distance(x, point_a))

To answer a question in comment: lambda is indeed necessary here since function specified as a key argument needs to accept only a single argument.

However, since your point_a is essentially global you could "hard-code" it into the distance function:

>>> point_a = point([1, 2, 3], 5)
>>> def distance(x):
    return numpy.linalg.norm(x.coord - point_a.coord)

This way you could pass distance as a key argument skipping lambda altogether.

>>> min(points_list, key=distance)
link|flag
+1, you beat me to it – Nadia Alramli Sep 22 at 14:48
Another Python function I didn't know about :) +1. I guess a loop would only be beneficial if you intend to calculate both min and max at the same time. – Andre Miller Sep 22 at 14:53
@Andre: I think the better option would be to use sort with the same key argument and get first and last elements. – SilentGhost Sep 22 at 14:54
@SilentGhost: Ok.. maybe you want min, max and average :-) – Andre Miller Sep 22 at 14:59
:-) – SilentGhost Sep 22 at 15:00
show 5 more comments

Your Answer

Get an OpenID
or

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