Python Forum
Indexing [::-1] to Reverse ALL 2D Array Rows, ALL 3D, 4D Array Columns & Rows Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Indexing [::-1] to Reverse ALL 2D Array Rows, ALL 3D, 4D Array Columns & Rows Python
#9
(Feb-24-2021, 10:57 PM)nilamo Wrote:
(Feb-22-2021, 11:22 AM)Jeremy7 Wrote: Thanks for your help. I got the following answers with some help from Stack Overflow and another source:
[:,::-1] reverses 2D array rows, [:,::-1,:] reverses 3D array columns, [:,:,::-1] reverses 3D array rows, [:,:,::-1,:] reverses 4D array columns, [:,:,:,::-1] reverses 4D array rows

I think you can achieve what you're looking for by using raw slice objects.
>>> import numpy as np
>>> randomArray = np.round(10*np.random.rand(5,4))
>>> sortedArray = np.sort(randomArray, axis=1)
>>> sortedArray.shape
(5, 4)
>>> axes = len(sortedArray.shape)
>>> slices = tuple(slice(None, None, -1) for _ in range(axes))
>>> reversedArr = sortedArray[slices]
>>> sortedArray
array([[4., 6., 6., 7.],
       [3., 6., 7., 8.],
       [1., 8., 9., 9.],
       [7., 8., 8., 9.],
       [0., 6., 7., 8.]])
>>> reversedArr
array([[8., 7., 6., 0.],
       [9., 8., 8., 7.],
       [9., 9., 8., 1.],
       [8., 7., 6., 3.],
       [7., 6., 6., 4.]])
Thanks, nilamo!
Reply


Messages In This Thread
RE: Indexing [::-1] to Reverse ALL 2D Array Rows, ALL 3D, 4D Array Columns & Rows Python - by Jeremy7 - Mar-02-2021, 01:54 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Numpy, array(2d,bool), flipping regions. MvGulik 2 936 Oct-27-2024, 11:06 AM
Last Post: MvGulik
  JSON File - extract only the data in a nested array for CSV file shwfgd 2 1,001 Aug-26-2024, 10:14 PM
Last Post: shwfgd
  ValueError: could not broadcast input array from shape makingwithheld 1 2,076 Jul-06-2024, 03:02 PM
Last Post: paul18fr
  python code to calculate mean of an array of numbers using numpy viren 3 1,096 May-29-2024, 04:49 PM
Last Post: Gribouillis
  Writing a cycle to find the nearest point from the array Tysrusko 0 735 May-10-2024, 11:49 AM
Last Post: Tysrusko
  Elegant way to apply each element of an array to a dataframe? sawtooth500 7 2,459 Mar-29-2024, 05:51 PM
Last Post: deanhystad
  Concatenate array for 3D plotting armanditod 1 1,274 Mar-21-2024, 08:08 PM
Last Post: deanhystad
  Convert numpy array to image without loading it into RAM. DreamingInsanity 7 8,806 Feb-08-2024, 09:38 AM
Last Post: paul18fr
  How Write Part of a Binary Array? Assembler 1 961 Jan-14-2024, 11:35 PM
Last Post: Gribouillis
  This result object does not return rows. It has been closed automatically dawid294 5 5,085 Jan-10-2024, 10:55 PM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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