Python Forum
Replace elements of array with elements from another array based on a third array
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Replace elements of array with elements from another array based on a third array
#6
(May-13-2022, 04:55 PM)deanhystad Wrote: Is there a pattern to the statements? It looks like they will either be "No change" or "Change x element to y". How can you convert "x" and "y" to indices?

Yes, the pattern could only consist of 'no change' or the choice of changing a specific element to 1 and all others to 0:

Input should be rplaced by :
'No change' Arrow no change
'Change first element to 1', Arrow [1, 0, 0, 0]
'Change second element to 1', Arrow [0, 1, 0, 0]
'Change third element to 1', Arrow [0, 0, 1, 0]
'Change fourth element to 1' Arrow [0, 0, 0, 1]
Reply


Messages In This Thread
RE: Replace elements of array with elements from another array based on a third array - by Cola_Reb - May-13-2022, 05:14 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Writing a cycle to find the nearest point from the array Tysrusko 0 49 6 hours ago
Last Post: Tysrusko
  Good way to ignore case when searching elements? Winfried 1 228 Apr-25-2024, 12:39 PM
Last Post: menator01
  Elegant way to apply each element of an array to a dataframe? sawtooth500 7 483 Mar-29-2024, 05:51 PM
Last Post: deanhystad
  Concatenate array for 3D plotting armanditod 1 312 Mar-21-2024, 08:08 PM
Last Post: deanhystad
  Convert numpy array to image without loading it into RAM. DreamingInsanity 7 5,956 Feb-08-2024, 09:38 AM
Last Post: paul18fr
  unable to remove all elements from list based on a condition sg_python 3 499 Jan-27-2024, 04:03 PM
Last Post: deanhystad
  How Write Part of a Binary Array? Assembler 1 407 Jan-14-2024, 11:35 PM
Last Post: Gribouillis
  Loop over an an array of array Chendipeter 1 614 Nov-28-2023, 06:37 PM
Last Post: deanhystad
  How to remove some elements from an array in python? gohanhango 9 1,344 Nov-28-2023, 08:35 AM
Last Post: Gribouillis
  IPython errors for numpy array min/max methods muelaner 1 610 Nov-04-2023, 09:22 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

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