MyraMath
Classes
TrsmAction.h File Reference

An Action for solving by a triangular Matrix, LowerMatrix or SparseMatrix using trsm(). More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for TrsmAction.h:
This graph shows which files directly or indirectly include this file:

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_TrsmAction (const CMatrixRange< NumberS > &A, char op='N', char uplo='L')
 Returns an Action that delegates to trsm_inplace() for dense Matrix.
 
Action< NumberD > myra::make_TrsmAction (const CMatrixRange< NumberD > &A, char op, char uplo)
 Returns an Action that delegates to trsm_inplace() for dense Matrix.
 
Action< NumberC > myra::make_TrsmAction (const CMatrixRange< NumberC > &A, char op, char uplo)
 Returns an Action that delegates to trsm_inplace() for dense Matrix.
 
Action< NumberZ > myra::make_TrsmAction (const CMatrixRange< NumberZ > &A, char op, char uplo)
 Returns an Action that delegates to trsm_inplace() for dense Matrix.
 
Action< NumberS > myra::make_TrsmAction (const CLowerMatrixRange< NumberS > &L, char op='N')
 Returns an Action that delegates to trsm_inplace() for LowerMatrix.
 
Action< NumberD > myra::make_TrsmAction (const CLowerMatrixRange< NumberD > &L, char op)
 Returns an Action that delegates to trsm_inplace() for LowerMatrix.
 
Action< NumberC > myra::make_TrsmAction (const CLowerMatrixRange< NumberC > &L, char op)
 Returns an Action that delegates to trsm_inplace() for LowerMatrix.
 
Action< NumberZ > myra::make_TrsmAction (const CLowerMatrixRange< NumberZ > &L, char op)
 Returns an Action that delegates to trsm_inplace() for LowerMatrix.
 
Action< NumberS > myra::make_TrsmAction (const CSparseMatrixRange< NumberS > &A, char op='N', char uplo='L')
 Returns an Action that delegates to trsm_inplace() for SparseMatrix.
 
Action< NumberD > myra::make_TrsmAction (const CSparseMatrixRange< NumberD > &A, char op, char uplo)
 Returns an Action that delegates to trsm_inplace() for SparseMatrix.
 
Action< NumberC > myra::make_TrsmAction (const CSparseMatrixRange< NumberC > &A, char op, char uplo)
 Returns an Action that delegates to trsm_inplace() for SparseMatrix.
 
Action< NumberZ > myra::make_TrsmAction (const CSparseMatrixRange< NumberZ > &A, char op, char uplo)
 Returns an Action that delegates to trsm_inplace() for SparseMatrix.
 

Detailed Description

An Action for solving by a triangular Matrix, LowerMatrix or SparseMatrix using trsm().