I am getting the error:
ValueError: operands could not be broadcast together with shapes (3,4) (3,3)
z= np.arange(12).reshape(3,4)
m= np.arange(9).reshape(3,3)
z * m
error:
ValueError: operands could not be broadcast together with shapes (3,4) (3,3)