def mass_matrix(deg, unroll=True): '''Mass matrix of Chebyshev polynomials of first kind.''' return common.mass_matrix(deg, basis_functions, unroll)
def mass_matrix(deg, unroll=True): '''Mass matrix of Bernstein basis.''' return common.mass_matrix(deg, basis_functions, unroll)
def mass_matrix(deg, unroll=True): '''Mass matrix of the H1 orthonormal basis.''' return common.mass_matrix(deg, basis_functions, unroll)