I am a pretty new to python. I have created an empty matrix
a = numpy.zeros(shape=(n,n))
Now I can access each element using
a.item(i,j)
How do I set an index (i,j)?
I am a pretty new to python. I have created an empty matrix
a = numpy.zeros(shape=(n,n))
Now I can access each element using
a.item(i,j)
How do I set an index (i,j)?