| MCF_HmulM |
MCD_HmulM |
MCE_HmulM |
|
| Funktion | Hermitesch-konjugierte Form einer Matrix mit einer anderen Matrix multiplizieren |
|
| Syntax C/C++ | #include <MCFstd.h>
void MCF_HmulM( cfMatrix MC, cfMatrix MA, cfMatrix MB, ui htA, ui lenA, ui lenB ); |
C++ MatObj | #include <OptiVec.h>
void matrix<complex<T> >::HmulM( const matrix<complex<T> >& MA, const matrix<complex<T> >& MA ); |
| Pascal/Delphi | uses MCFstd;
procedure MCF_HmulM( MC, MA, MB:cfMatrix; htA, lenA, lenB:UIntSize ); |
|
| Beschreibung | MC = MAT* * MB
htA, lenA, und lenB müssen spezifiziert werden; die übrigen Dimensionen sind implizit gegeben als: htB = htA, lenC = lenB, htC = lenA. htA und lenA beziehen sich auf die originale, nicht-transponierte Eingabe-Matrix. |
|
|