What is the command to estimate the condition number of a matrix in the Fenics Python interface?
You can use the array() function provided by the matrix interface which returns a numpy array representation of your matrix. You can then plug this into your favorite condest implementation. There is no such function in numpy/scipy directly, but you can try out pyamg.util.linalg.condest.
array()
condest
pyamg.util.linalg.condest