jax.numpy.swapaxes
Warning
This page was created from a pull request (#9655).
jax.numpy.swapaxesΒΆ
- jax.numpy.swapaxes(a, axis1, axis2)[source]ΒΆ
Interchange two axes of an array.
LAX-backend implementation of
swapaxes()
.The JAX version of this function may in some cases return a copy rather than a view of the input.
Original docstring below.
- Parameters
- Returns
a_swapped β For NumPy >= 1.10.0, if a is an ndarray, then a view of a is returned; otherwise a new array is created. For earlier NumPy versions a view of a is returned only if the order of the axes is changed, otherwise the input array is returned.
- Return type