Python Forum
Get closest value array for array of arrays.
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Get closest value array for array of arrays.
#1
Title is quite confusing let me explain:
If I have an 2D array of values 'y': [[10,20,10],[30,20,10],[10,10,10],[45,37,34]]
and a singular array 'x': [25,18,9]
I want to be able to run function findClosestArray(x, y) which will return
Output:
[30,20,10]
because that is the closest array to the one I provided.
If I ran findClosestArray(x, y) with 'x' NOW being [43,37,30] it would return
Output:
[45,37,34]
It's very similar to this:
myList = [6,6,10,50,24,457,24]
myNumber= 9
a = min(myList, key=lambda x:abs(x-myNumber))
print(a)
(which would return 10)
but instead with arrays.

How can I do this?
Reply


Messages In This Thread
Get closest value array for array of arrays. - by DreamingInsanity - Nov-17-2019, 09:31 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Elegant way to apply each element of an array to a dataframe? sawtooth500 7 441 Mar-29-2024, 05:51 PM
Last Post: deanhystad
  Concatenate array for 3D plotting armanditod 1 292 Mar-21-2024, 08:08 PM
Last Post: deanhystad
  Convert numpy array to image without loading it into RAM. DreamingInsanity 7 5,917 Feb-08-2024, 09:38 AM
Last Post: paul18fr
  How Write Part of a Binary Array? Assembler 1 359 Jan-14-2024, 11:35 PM
Last Post: Gribouillis
  Loop over an an array of array Chendipeter 1 597 Nov-28-2023, 06:37 PM
Last Post: deanhystad
  How to remove some elements from an array in python? gohanhango 9 1,224 Nov-28-2023, 08:35 AM
Last Post: Gribouillis
  IPython errors for numpy array min/max methods muelaner 1 575 Nov-04-2023, 09:22 PM
Last Post: snippsat
  Convert np Array A to networkx G IanAnderson 2 698 Jul-05-2023, 11:42 AM
Last Post: IanAnderson
  Help using a dynamic array excel formula with XLWings FXMonkey 2 1,303 Jun-06-2023, 09:46 PM
Last Post: FXMonkey
  [Newbie] Multiple Array azhuda 3 1,037 Jun-01-2023, 04:29 AM
Last Post: azhuda

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020