原文:https://docs.scipy.org/doc/numpy/reference/generated/numpy.append.html
校对:(虚位以待)
numpy.
append
(arr, values, axis=None)[source]将值附加到数组的末尾。
参数: | arr:array_like
值:array_like
axis:int,可选
|
---|---|
返回: | 追加:ndarray
|
例子
>>> np.append([1, 2, 3], [[4, 5, 6], [7, 8, 9]])
array([1, 2, 3, 4, 5, 6, 7, 8, 9])
指定axis时,值必须具有正确的形状。
>>> np.append([[1, 2, 3], [4, 5, 6]], [[7, 8, 9]], axis=0)
array([[1, 2, 3],
[4, 5, 6],
[7, 8, 9]])
>>> np.append([[1, 2, 3], [4, 5, 6]], [7, 8, 9], axis=0)
Traceback (most recent call last):
...
ValueError: arrays must have same number of dimensions