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