备注:numpy==1.16.4
序号 | 函数名称 | 功能 | jupyter notebook链接 | CSDN链接 |
---|---|---|---|---|
1 | numpy.floor | 按元素顺序将输入数据向下取整 | jupyter notebook | CSDN |
2 | numpy.random.normal | 从正态(高斯)分布中抽取随机样本 | jupyter notebook | CSDN |
3 | numpy.linspace | 在指定区间内返回均匀间隔的数字 | jupyter notebook | CSDN |
4 | numpy.zeros | 生成全0数组 | jupyter notebook | CSDN |
5 | numpy.empty | 根据给定的维度和数值类型随机生成数组 | jupyter notebook | CSDN |
6 | numpy.eye | 对角线元素为1,其余位置元素为0的数组 | jupyter notebook | CSDN |
7 | numpy.random.randint | 返回半闭区间内的随机整数 | jupyter notebook | CSDN |
8 | numpy.concatenate | 沿着指定的轴拼接一系列数组 | jupyter notebook | CSDN |
9 | numpy.ma | 介绍掩码数组 | jupyter notebook | CSDN |
10 | numpy.dstack | 将列表中的数组沿深度方向进行拼接 | jupyter notebook | CSDN |
11 | numpy.add | 两个数组对应位置的元素求和 | jupyter notebook | CSDN |
12 | numpy.negative | 对数组中每一个元素取相反数 | jupyter notebook | CSDN |
13 | numpy.divide | 数组对应位置元素做真正除法 | jupyter notebook | CSDN |
14 | numpy.broadcast | 解释广播机制 | jupyter notebook | CSDN |
15 | numpy.mod | 计算两数组对应位置元素的余数 | jupyter notebook | CSDN |
16 | numpy.arange | 返回给定区间范围内间隔均匀的数值 | jupyter notebook | CSDN |
17 | numpy.absolute | 对数组中的每一个元素求其绝对值 | jupyter notebook | CSDN |
18 | numpy.tan | 对数组中的每一个元素求其正切值 | jupyter notebook | CSDN |
19 | numpy.arcsin | 对数组中的每一个元素求反正弦值 | jupyter notebook | CSDN |
20 | numpy.arccos | 对数组中的每一个元素求反余弦值 | jupyter notebook | CSDN |
21 | numpy.arctan | 对数组中的每一个元素求反正切值 | jupyter notebook | CSDN |
22 | numpy.copy | 返回给定数组的深拷贝 | jupyter notebook | CSDN |
23 | numpy.exp | 对输入数组的每个元素计算指数函数 | jupyter notebook | CSDN |
24 | numpy.newaxis | 给现有的数组增加一个维度 | jupyter notebook | CSDN |
25 | numpy.angle | 计算复数的辐角主值 | jupyter notebook | CSDN |
26 | numpy.argmax | 计算数组沿着某一条轴最大值的索引 | jupyter notebook | CSDN |
27 | numpy.tril | 返回数组的下三角部分 | jupyter notebook | CSDN |
28 | numpy.triu | 返回数组的上三角部分 | jupyter notebook | CSDN |
29 | numpy.argsort | 返回数组排序后的元素索引值 | jupyter notebook | CSDN |
30 | numpy.sum | 数组沿着指定的轴求和 | jupyter notebook | CSDN |