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