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