|
MyraMath
|
An Action for multiplying by a triangular Matrix, LowerMatrix or SparseMatrix using trmm(). More...
Go to the source code of this file.
Classes | |
| class | myra::Action< Number > |
| Applies the "Action" of a linear operator, b := A*x. More... | |
| class | myra::CMatrixRange< Number > |
| Represents a const MatrixRange. More... | |
| class | myra::CLowerMatrixRange< Number > |
| Represents a const LowerMatrixRange. More... | |
| class | myra::CSparseMatrixRange< Number > |
| Represents a const SparseMatrixRange. More... | |
Functions | |
| Action< NumberS > | myra::make_TrmmAction (const CMatrixRange< NumberS > &A, char op='N', char uplo='L') |
| Returns an Action that delegates to trmm_inplace() for dense Matrix. | |
| Action< NumberD > | myra::make_TrmmAction (const CMatrixRange< NumberD > &A, char op, char uplo) |
| Returns an Action that delegates to trmm_inplace() for dense Matrix. | |
| Action< NumberC > | myra::make_TrmmAction (const CMatrixRange< NumberC > &A, char op, char uplo) |
| Returns an Action that delegates to trmm_inplace() for dense Matrix. | |
| Action< NumberZ > | myra::make_TrmmAction (const CMatrixRange< NumberZ > &A, char op, char uplo) |
| Returns an Action that delegates to trmm_inplace() for dense Matrix. | |
| Action< NumberS > | myra::make_TrmmAction (const CLowerMatrixRange< NumberS > &L, char op='N') |
| Returns an Action that delegates to trmm_inplace() for LowerMatrix. | |
| Action< NumberD > | myra::make_TrmmAction (const CLowerMatrixRange< NumberD > &L, char op) |
| Returns an Action that delegates to trmm_inplace() for LowerMatrix. | |
| Action< NumberC > | myra::make_TrmmAction (const CLowerMatrixRange< NumberC > &L, char op) |
| Returns an Action that delegates to trmm_inplace() for LowerMatrix. | |
| Action< NumberZ > | myra::make_TrmmAction (const CLowerMatrixRange< NumberZ > &L, char op) |
| Returns an Action that delegates to trmm_inplace() for LowerMatrix. | |
| Action< NumberS > | myra::make_TrmmAction (const CSparseMatrixRange< NumberS > &A, char op='N', char uplo='L') |
| Returns an Action that delegates to trmm_inplace() for SparseMatrix. | |
| Action< NumberD > | myra::make_TrmmAction (const CSparseMatrixRange< NumberD > &A, char op, char uplo) |
| Returns an Action that delegates to trmm_inplace() for SparseMatrix. | |
| Action< NumberC > | myra::make_TrmmAction (const CSparseMatrixRange< NumberC > &A, char op, char uplo) |
| Returns an Action that delegates to trmm_inplace() for SparseMatrix. | |
| Action< NumberZ > | myra::make_TrmmAction (const CSparseMatrixRange< NumberZ > &A, char op, char uplo) |
| Returns an Action that delegates to trmm_inplace() for SparseMatrix. | |
An Action for multiplying by a triangular Matrix, LowerMatrix or SparseMatrix using trmm().
1.8.13