Hi, I'm new to fenics. I was wondering how to go about writing matrices in fenics(i.e 3x3 zero or identity matrix).
import dolfin as df zero = df.zero((3,3)) I = df.Identity(3)