MyraMath
Classes
conjugate.h File Reference

Returns a conjugated copy of a Matrix or Vector. Or, conjugate one inplace. More...

#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Include dependency graph for conjugate.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::Vector< Number >
 Tabulates a vector of length N, allows random access. More...
 
class  myra::LowerMatrix< Number >
 Stores a lower triangular matrix in rectangular packed format. More...
 
class  myra::DiagonalMatrix< Number >
 Tabulates the values of a square NxN diagonal matrix. Allows random access, but only on the diagonal. More...
 
class  myra::MatrixRange< Number >
 Represents a mutable MatrixRange. More...
 
class  myra::VectorRange< Number >
 Represents a mutable VectorRange. More...
 
class  myra::LowerMatrixRange< Number >
 Represents a mutable LowerMatrixRange. More...
 
class  myra::DiagonalMatrixRange< Number >
 Represents a mutable DiagonalMatrixRange. More...
 
class  myra::CMatrixRange< Number >
 Represents a const MatrixRange. More...
 
class  myra::CVectorRange< Number >
 Represents a const VectorRange. More...
 
class  myra::CLowerMatrixRange< Number >
 Represents a const LowerMatrixRange. More...
 
class  myra::CDiagonalMatrixRange< Number >
 Represents a const DiagonalMatrixRange. More...
 

Functions

Matrix< NumberS > myra::conjugate (const CMatrixRange< NumberS > &A)
 Returns a conjugated copy of a Matrix A.
 
Matrix< NumberD > myra::conjugate (const CMatrixRange< NumberD > &A)
 Returns a conjugated copy of a Matrix A.
 
Matrix< NumberC > myra::conjugate (const CMatrixRange< NumberC > &A)
 Returns a conjugated copy of a Matrix A.
 
Matrix< NumberZ > myra::conjugate (const CMatrixRange< NumberZ > &A)
 Returns a conjugated copy of a Matrix A.
 
Vector< NumberS > myra::conjugate (const CVectorRange< NumberS > &x)
 Returns a conjugated copy of a Vector x.
 
Vector< NumberD > myra::conjugate (const CVectorRange< NumberD > &x)
 Returns a conjugated copy of a Vector x.
 
Vector< NumberC > myra::conjugate (const CVectorRange< NumberC > &x)
 Returns a conjugated copy of a Vector x.
 
Vector< NumberZ > myra::conjugate (const CVectorRange< NumberZ > &x)
 Returns a conjugated copy of a Vector x.
 
LowerMatrix< NumberS > myra::conjugate (const CLowerMatrixRange< NumberS > &L)
 Returns a conjugated copy of a LowerMatrix L.
 
LowerMatrix< NumberD > myra::conjugate (const CLowerMatrixRange< NumberD > &L)
 Returns a conjugated copy of a LowerMatrix L.
 
LowerMatrix< NumberC > myra::conjugate (const CLowerMatrixRange< NumberC > &L)
 Returns a conjugated copy of a LowerMatrix L.
 
LowerMatrix< NumberZ > myra::conjugate (const CLowerMatrixRange< NumberZ > &L)
 Returns a conjugated copy of a LowerMatrix L.
 
DiagonalMatrix< NumberS > myra::conjugate (const CDiagonalMatrixRange< NumberS > &D)
 Returns a conjugated copy of a DiagonalMatrix D.
 
DiagonalMatrix< NumberD > myra::conjugate (const CDiagonalMatrixRange< NumberD > &D)
 Returns a conjugated copy of a DiagonalMatrix D.
 
DiagonalMatrix< NumberC > myra::conjugate (const CDiagonalMatrixRange< NumberC > &D)
 Returns a conjugated copy of a DiagonalMatrix D.
 
DiagonalMatrix< NumberZ > myra::conjugate (const CDiagonalMatrixRange< NumberZ > &D)
 Returns a conjugated copy of a DiagonalMatrix D.
 
void myra::conjugate_inplace (const MatrixRange< NumberS > &A)
 Overwrites Matrix A with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const MatrixRange< NumberD > &A)
 Overwrites Matrix A with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const MatrixRange< NumberC > &A)
 Overwrites Matrix A with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const MatrixRange< NumberZ > &A)
 Overwrites Matrix A with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const VectorRange< NumberS > &x)
 Overwrites Vector x with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const VectorRange< NumberD > &x)
 Overwrites Vector x with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const VectorRange< NumberC > &x)
 Overwrites Vector x with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const VectorRange< NumberZ > &x)
 Overwrites Vector x with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const LowerMatrixRange< NumberS > &L)
 Overwrites LowerMatrix L with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const LowerMatrixRange< NumberD > &L)
 Overwrites LowerMatrix L with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const LowerMatrixRange< NumberC > &L)
 Overwrites LowerMatrix L with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const LowerMatrixRange< NumberZ > &L)
 Overwrites LowerMatrix L with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const DiagonalMatrixRange< NumberS > &D)
 Overwrites DiagonalMatrix D with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const DiagonalMatrixRange< NumberD > &D)
 Overwrites DiagonalMatrix D with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const DiagonalMatrixRange< NumberC > &D)
 Overwrites DiagonalMatrix D with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_inplace (const DiagonalMatrixRange< NumberZ > &D)
 Overwrites DiagonalMatrix D with its conjugate. Note it's a no-op for real operands.
 
void myra::conjugate_triangle (const MatrixRange< NumberS > &A, char uplo)
 Helper function for conjugating the 'U'pper or 'L'ower triangle of a MatrixRange.
 
void myra::conjugate_triangle (const MatrixRange< NumberD > &A, char uplo)
 Helper function for conjugating the 'U'pper or 'L'ower triangle of a MatrixRange.
 
void myra::conjugate_triangle (const MatrixRange< NumberC > &A, char uplo)
 Helper function for conjugating the 'U'pper or 'L'ower triangle of a MatrixRange.
 
void myra::conjugate_triangle (const MatrixRange< NumberZ > &A, char uplo)
 Helper function for conjugating the 'U'pper or 'L'ower triangle of a MatrixRange.
 

Detailed Description

Returns a conjugated copy of a Matrix or Vector. Or, conjugate one inplace.