MCF_Rows_absmaxReIm
| MCD_Rows_absmaxReIm |
MCE_Rows_absmaxReIm |
|
Funktion | Betrags-Maxima der Real- und der Imaginärteile getrennt voneinander für die einzelnen Zeilen bestimmen und als Real- bzw. Imaginärteile eines Spalten-Vektors speichern |
|
Syntax C/C++ | #include <MFstd.h>
void MCF_Rows_absmaxReIm( cfVector Y, cfMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<complex<T> >::Rows_absmaxReIm( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MFstd;
procedure MCF_Rows_absmaxReIm( Y:cfVector; MA:cfMatrix; ht, len:UIntSize ); |
|
CUDA-Funktion C/C++ | #include <cudaMCFstd.h>
int cudaMCF_Rows_absmaxReIm( cfVector d_Y, cfMatrix d_MA, ui ht, ui len );
void MCFcu_Rows_absmaxReIm( cfVector h_Y, cfMatrix h_MA, ui ht, ui len ); |
CUDA-Funktion Pascal/Delphi | uses MCFstd;
function cudaMCF_Rows_absmaxReIm( d_Y:cfVector; d_MA:cfMatrix; ht, len:UIntSize ): IntBool;
procedure MCFcu_Rows_absmaxReIm( h_Y:cfVector; h_MA:cfMatrix; ht, len:UIntSize );
|
|
Beschreibung | Für i=0,..,ht-1 wird das Betragsmaximum der Realteile jeder Zeile i als Element Yi.Re gespeichert und das Betragsmaximum der Imaginärteile jeder Zeile i als Element Yi.Im. |
|
|