Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 364499
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:26:40+00:00 2026-05-12T13:26:40+00:00

I have the following array in Python: points_list = [point0, point1, point2] where each

  • 0

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?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T13:26:40+00:00Added an answer on May 12, 2026 at 1:26 pm

    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)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 179k
  • Answers 179k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer If you have 11g, look at SKIP LOCKED It is… May 12, 2026 at 3:49 pm
  • Editorial Team
    Editorial Team added an answer Using xattr... for instance, I have a directory named "Foo",… May 12, 2026 at 3:49 pm
  • Editorial Team
    Editorial Team added an answer I'd definitely recommend using Keith Brown's 'Universal Delegator' to do… May 12, 2026 at 3:49 pm

Related Questions

I have a 3D array in Python and I need to iterate over all
Currently I'm in the process of moving a performance bottleneck in my python code
I have a series of Python tuples representing coordinates: tuples = [(1,1), (0,1), (1,0),
I have a JSON object created in PHP, that JSON object contains another escaped

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.