How can i access the matrix entries of a FEM system matrix?
I found several related questions here, but they were all based on the legacy dolfin version.
My goal is to compute the condition number of the matrix, which I intend to do using numpy.
I tried something like A.array(), but this is only implemented for the solution/function, not for a matrix.
Moroever: If accessing a matrix that was returned from assemble_matrix_block differes from accessing a matrix from simpler matrices, I am interested in both.