arkouda icon indicating copy to clipboard operation
arkouda copied to clipboard

`pdarray.reshape` should have an order argument

Open ajpotts opened this issue 5 months ago • 0 comments

pdarray.reshape should have an order argument:

        order : str {'row_major' | 'C' | 'column_major' | 'F'}
            Read the elements of the pdarray in this index order
            By default, read the elements in row_major or C-like order where the last index
            changes the fastest
            If 'column_major' or 'F', read the elements in column_major or Fortran-like order where the
first index changes the fastest

To match numpy: https://numpy.org/doc/stable/reference/generated/numpy.reshape.html

ajpotts avatar Aug 30 '24 17:08 ajpotts