MyraMath
Classes
hermitian.h File Reference

Returns a hermitian copy of a Matrix. The inplace version only works on a square operand. More...

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

Go to the source code of this file.

Classes

class  myra::Matrix< Number >
 Tabulates an IxJ matrix. Allows random access, has column major layout to be compatible with BLAS/LAPACK. More...
 
class  myra::MatrixRange< Number >
 Represents a mutable MatrixRange. More...
 
class  myra::CMatrixRange< Number >
 Represents a const MatrixRange. More...
 

Functions

Matrix< NumberS > myra::hermitian (const CMatrixRange< NumberS > &A)
 Returns the hermitian of a Matrix A. Not to be confused with transpose()
 
Matrix< NumberD > myra::hermitian (const CMatrixRange< NumberD > &A)
 Returns the hermitian of a Matrix A. Not to be confused with transpose()
 
Matrix< NumberC > myra::hermitian (const CMatrixRange< NumberC > &A)
 Returns the hermitian of a Matrix A. Not to be confused with transpose()
 
Matrix< NumberZ > myra::hermitian (const CMatrixRange< NumberZ > &A)
 Returns the hermitian of a Matrix A. Not to be confused with transpose()
 
void myra::hermitian_inplace (const MatrixRange< NumberS > &A)
 Overwrites a square Matrix A with its own hermitian. Not to be confused with transpose_inplace()
 
void myra::hermitian_inplace (const MatrixRange< NumberD > &A)
 Overwrites a square Matrix A with its own hermitian. Not to be confused with transpose_inplace()
 
void myra::hermitian_inplace (const MatrixRange< NumberC > &A)
 Overwrites a square Matrix A with its own hermitian. Not to be confused with transpose_inplace()
 
void myra::hermitian_inplace (const MatrixRange< NumberZ > &A)
 Overwrites a square Matrix A with its own hermitian. Not to be confused with transpose_inplace()
 

Detailed Description

Returns a hermitian copy of a Matrix. The inplace version only works on a square operand.