-
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.
Returns: a_swapped : ndarray
For Numpy >= 1.10, if
a
is an ndarray, then a view ofa
is returned; otherwise a new array is created. For earlier Numpy versions a view ofa
is returned only if the order of the axes is changed, otherwise the input array is returned.Examples
12345>>> x
=
np.array([[
1
,
2
,
3
]])
>>> np.swapaxes(x,
0
,
1
)
array([[
1
],
[
2
],
[
3
]])
123456>>> x
=
np.array([[[
0
,
1
],[
2
,
3
]],[[
4
,
5
],[
6
,
7
]]])
>>> x
array([[[
0
,
1
],
[
2
,
3
]],
[[
4
,
5
],
[
6
,
7
]]])
12345>>> np.swapaxes(x,
0
,
2
)
array([[[
0
,
4
],
[
2
,
6
]],
[[
1
,
5
],
[
3
,
7
]]])
numpy.swapaxes()

2025-01-10 15:47:30
Please login to continue.