标签: python numpy numpy-broadcasting
我有一个numpy数组
a = np.array([1, 2, 3])
我希望数组在n个维度上重复
f(a, 2) == np.array([[1, 2, 3], [1, 2, 3]])
我如何用numpy做到这一点?