I have a Problem with the simple insertion into a matrix in python: (I am not very python experienced)
matrix = numpy.zeros(shape=(len(10), len(10)), dtype=int)
Now I want to insert specific values to the matrix index, e.g. at line 1, column 1.
How do i do that? I already was on https://docs.scipy.org/doc/numpy but with the insert-method it does not work.
I just want a simple style like: matrix[1][1] = 17
It has to be a matrix in that style, because after insertion I have to do a singular value decomposition.