MyraMath
Classes
trsm.h File Reference

Routines for backsolving by a triangular SparseMatrix. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for trsm.h:

Go to the source code of this file.

Classes

class  myra::CSparseMatrixRange< Number >
 Represents a const SparseMatrixRange. More...
 
class  myra::MatrixRange< Number >
 Represents a mutable MatrixRange. More...
 

Functions

void myra::trsm_inplace (char side, char uplo, char op, const CSparseMatrixRange< NumberS > &A, const MatrixRange< NumberS > &B)
 Solves op(A)*X = B, or X*op(A) = B. Overwrites B with X.
 
void myra::trsm_inplace (char side, char uplo, char op, const CSparseMatrixRange< NumberD > &A, const MatrixRange< NumberD > &B)
 Solves op(A)*X = B, or X*op(A) = B. Overwrites B with X.
 
void myra::trsm_inplace (char side, char uplo, char op, const CSparseMatrixRange< NumberC > &A, const MatrixRange< NumberC > &B)
 Solves op(A)*X = B, or X*op(A) = B. Overwrites B with X.
 
void myra::trsm_inplace (char side, char uplo, char op, const CSparseMatrixRange< NumberZ > &A, const MatrixRange< NumberZ > &B)
 Solves op(A)*X = B, or X*op(A) = B. Overwrites B with X.
 

Detailed Description

Routines for backsolving by a triangular SparseMatrix.