numpy内置属性信息
内置属性
|
作用
|
|
ndim
|
输出维度信息
|
|
shape
|
输出各个维度的元素个数
|
|
size
|
输出矩阵的元素个数
|
|
numpy内置常用函数
函数
|
|
|
zeros
|
生成全0矩阵
|
np.zero((3,4) , dtype=np.int64)
|
ones
|
生成全1举证
|
np.ones((3,4) , dtype=np.int64)
|
empty
|
|
np.empty((3,4) , dtype=np.int64)
|
arrange
| 有序序列 |
np.arrange(12, 1,1, )
|
reshape
|
重新生成对应的维度的矩阵
|
|
linspace
|
在指定的间隔内返回均匀间隔的数字
|
np
.
linspace
(
2.0
,
3.0
,
num
=
5
)
|
argmin
|
最小值的索引
|
|
argmax
|
最大值的索引
|
|
mean
|
平均值
|
|
median
|
中位数
|
|
diff
|
Calculate the n-th discrete difference along the given axis.
|
|
nonezero
|
不是0的位置,已true/false
|
|
T
|
转置
|
|
clip | 指定相关大小,把矩阵内不在该区间的的数变换了相关的最小/大值 | |
vstack
|
上下合并两个矩阵
|
|
hstack
|
左右合并
|
|
concatenate
|
合并多个矩阵,通过axis 的轴参数控制上下合并还是左右合并
|
|
split |
分割矩阵,axis
|
|