feec.multipatch.fem_linear_operators#
Classes#
|
operator L = L_1 . |
|
Linear operators with an additional Fem layer |
|
|
|
Details#
- class FemLinearOperator(fem_domain=None, fem_codomain=None, matrix=None, sparse_matrix=None)[source]#
Bases:
LinearOperator
Linear operators with an additional Fem layer
- property domain#
The domain of the linear operator - an element of Vectorspace
- property codomain#
The codomain of the linear operator - an element of Vectorspace
- property fem_domain#
- property fem_codomain#
- property matrix#
- property T#
Calls transpose method to return the transpose of self.
- property dtype#
- class ComposedLinearOperator(operators)[source]#
Bases:
FemLinearOperator
operator L = L_1 .. L_n with L_i = self._operators[i-1] (so, the last one is applied first, like in a product)
- class IdLinearOperator(V)[source]#
Bases:
FemLinearOperator
- class SumLinearOperator(B, A)[source]#
Bases:
FemLinearOperator