My question is really simple. I have to make a 5*5 matrix and each i,j value should follow a formula of i+j
I have this so far: '''
w = np.zeros(shape=(5,5))
print(w)
for i in range(5):
for j in range(5):
w[i][j] == i**2+j
print(w)
But Its just returning a 0 matrix right now what to do ?
Just change
to (if you want to keep the formular)
or use the formular from your question
If you want to get rid of the loops, you can use numpy
Out: