📖 INDEX
LOADING ENGINE...
np.swapaxes()
AI & DATA SCIENCE // np-swapaxes
Interchanges two axes of an array.
Syntax
swapped = np.swapaxes(arr, 0, 1)Examples
Example 01Basic Usage
swapped = np.swapaxes(arr, 0, 1)Best Practices
- Refer to the official NumPy documentation for deep vectorization techniques.
- Avoid writing custom Python for-loops for operations that can be vectorized with NumPy.