Esempio 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)
Esempio n. 2
0
def stiffness_matrix(deg, unroll=True):
    '''Stiffness matrix of Bernstein basis.'''
    return common.stiffness_matrix(deg, basis_functions, unroll)
Esempio n. 3
0
def stiffness_matrix(deg, unroll=True):
    '''Stiffness matrix of the H1 orthonormal basis.'''
    return common.stiffness_matrix(deg, basis_functions, unroll)