MCF_hermconj
| MCD_hermconj |
MCE_hermconj |
|
Function | Hermitian conjugate of a matrix |
|
Syntax C/C++ | #include <MCFstd.h>
void MCF_hermconj( cfMatrix MTr, cfMatrix MA, ui htTr, ui lenTr ); |
C++ MatObj | #include <OptiVec.h>
void matrix<complex<T> >::hermconj( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MCFstd;
procedure MCF_hermconj( MTr, MA:cfMatrix; htTr, lenTr:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMCFstd.h>
int cudaMCF_hermconj( cfMatrix d_MTr, cfMatrix d_MA, ui htTr, ui lenTr );
void MCFcu_hermconj( cfMatrix h_MTr, cfMatrix h_MA, ui htTr, ui lenTr );
|
CUDA function Pascal/Delphi | uses MCFstd;
function cudaMCF_hermconj( d_MTr, d_MA:cfMatrix; htTr, lenTr:UIntSize ): IntBool;
procedure MCFcu_hermconj( h_MTr, h_MA:cfMatrix; htTr, lenTr:UIntSize );
|
|
Description | The Hermitian conjugate of a complex matrix is defined as the complex conjugate of its transpose:
MTri,j = MAj,i*
The dimensions fed into this function, htTr and lenTr, refer to the transposed matrix rather than to the input matrix. |
|
|