>>> arr = np.array([[3, -4, 4], [1, -2, 2]])
>>> arr
array([[ 3, -4, 4],
[ 1, -2, 2]])
>>> arr[1]-(1/3)*arr[0]
array([ 0. , -0.66666667, 0.66666667])
>>> arr[1] = arr[1]-(1/3)*arr[0]
>>> arr
array([[ 3, -4, 4],
[ 0, 0, 0]])
what do I do wrong? I want to assign the result of the calculation to the second row of the array "arr"
intarray.