| MCF_hermconj
| MCD_hermconj |
MCE_hermconj |
|
| Funktion | Hermitesch-konjugierte Form |
|
| Syntax C/C++ | #include <MCFstd.h>
void MCF_hermconj( cfMatrix Tr, 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-Funktion 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-Funktion 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 );
|
|
| Beschreibung | Die Hermitesch-konjugierte Form einer komplexen Matrix ist als komplex-konjugierte form ihrer Transponierten definiert:
MTri,j = MAj,i*
Die an diese Funktion übergebenen Dimensionen htTr und lenTr beziehen sich auf die transponierte Ausgabe-Matrix. |
|
|