python多维数组随机打乱
时间: 2023-07-03 13:07:39 浏览: 107
Python实现随机取一个矩阵数组的某几行
可以使用numpy库中的shuffle函数对多维数组进行随机打乱。
示例代码:
```python
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
# 打乱行顺序
np.random.shuffle(arr)
print(arr)
```
输出结果:
```
[[1 2 3]
[7 8 9]
[4 5 6]]
```
如果需要打乱列顺序,可以先对数组进行转置操作,然后再进行打乱。示例代码:
```python
import numpy as np
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
# 转置后打乱列顺序
np.random.shuffle(arr.T)
print(arr)
```
输出结果:
```
[[3 2 1]
[6 5 4]
[9 8 7]]
```
阅读全文