当我尝试运行这段简单的代码片段时
a= 2
G = np.random.rand(25,1)
H = np.zeros((25,a))
for i in range(a):
H[:,i] = .5 * G
我收到了
ValueError: could not broadcast input array from shape (25,1) into shape (25).
我想知道是否有人可以指出这个问题的解决方案?
我知道它在图像处理中发生了很多,但是这一点,我不知道如何规避。
干杯。