发布时间:2019-09-23 17:02:02编辑:auto阅读(10411)
repeat()函数用法:
np.repeat(3, 4)
array([3, 3, 3, 3])x = np.array([[1,2],[3,4]])
np.repeat(x, 2)
array([1, 1, 2, 2, 3, 3, 4, 4])np.repeat(x, 3, axis=1) #沿着纵轴方向重复,增加列数
array([[1, 1, 1, 2, 2, 2],
[3, 3, 3, 4, 4, 4]])np.repeat(x, [1, 2], axis=0) #沿着横轴方向重复,增加行数,分别为一次和两次
array([[1, 2],
[3, 4],
[3, 4]])
上一篇: Python画3D心形
下一篇: 总结H3CNE学习过程和其他
47819
46341
37230
34702
29288
25949
24850
19922
19500
17986
5765°
6391°
5896°
5942°
7044°
5886°
5911°
6413°
6376°
7744°