About 1,800 results
Open links in new tab
  1. numpy.transpose — NumPy v2.2 Manual

    numpy. transpose (a, axes = None) [source] # Returns an array with axes transposed. For a 1-D array, this returns an unchanged view of the original array, as a transposed vector is simply …

  2. numpy.transpose — NumPy v2.1 Manual

    numpy. transpose (a, axes = None) [source] # Returns an array with axes transposed. For a 1-D array, this returns an unchanged view of the original array, as a transposed vector is simply …

  3. numpy.flip — NumPy v2.2 Manual

    numpy. flip (m, axis = None) [source] # Reverse the order of elements in an array along the given axis. The shape of the array is preserved, but the elements are reordered.

  4. numpy.ndarray.transpose — NumPy v2.2 Manual

    numpy.ndarray.transpose# method. ndarray. transpose (* axes) # Returns a view of the array with axes transposed. Refer to numpy.transpose for full documentation. Parameters: axes None, …

  5. numpy.matrix.transpose — NumPy v2.2 Manual

    numpy.matrix.transpose# method. matrix. transpose (* axes) # Returns a view of the array with axes transposed. Refer to numpy.transpose for full documentation. Parameters: axes None, …

  6. Array manipulation routines — NumPy v2.2 Manual

    View of the transposed array. transpose (a[, axes]) Returns an array with axes transposed. permute_dims (a[, axes]) Returns an array with axes transposed. matrix_transpose (x, /) …

  7. numpy.swapaxes — NumPy v2.2 Manual

    numpy.swapaxes# numpy. swapaxes (a, axis1, axis2) [source] # Interchange two axes of an array. Parameters: a array_like. Input array. axis1 int. First axis. axis2 int. Second axis. …

  8. numpy.flip — NumPy v2.1 Manual

    numpy. flip (m, axis = None) [source] # Reverse the order of elements in an array along the given axis. The shape of the array is preserved, but the elements are reordered.

  9. numpy.flipud — NumPy v2.2 Manual

    numpy.flipud# numpy. flipud (m) [source] # Reverse the order of elements along axis 0 (up/down). For a 2-D array, this flips the entries in each column in the up/down direction. Rows are …

  10. numpy.fliplr — NumPy v2.2 Manual

    numpy. fliplr (m) [source] # Reverse the order of elements along axis 1 (left/right). For a 2-D array, this flips the entries in each row in the left/right direction.

Refresh