reshape函数python 升维
时间: 2023-07-21 11:41:25 浏览: 92
Softmax函数原理及Python实现过程解析
在Python中,可以使用`reshape()`函数来改变数组的形状,包括升维。升维可以通过在`reshape()`函数中指定新形状中的维度大小为1来实现。例如:
```python
import numpy as np
# 创建一个二维数组
arr = np.array([[1,2,3], [4,5,6]])
# 将其升为三维数组
new_arr = arr.reshape((2, 1, 3))
print(new_arr)
```
输出结果为:
```
[[[1 2 3]]
[[4 5 6]]]
```
可以看到,原本的二维数组被升为了三维数组,新数组的形状为`(2, 1, 3)`。其中,`1`表示新加的维度大小为1。
阅读全文