📜  沿轴复制数组 numpy - Python 代码示例

📅  最后修改于: 2022-03-11 14:47:06.746000             🧑  作者: Mango

代码示例1
a = np.array([[1, 2], [1, 2]])

# indexing with np.newaxis inserts a new 3rd dimension, which we then repeat the
# array along, (you can achieve the same effect by indexing with None, see below)
b = np.repeat(a[:, :, np.newaxis], 3, axis=2)

print(b[:, :, 2])
# [[1 2]
#  [1 2]]