MCF_Rows_maxReIm
| MCD_Rows_maxReIm |
MCE_Rows_maxReIm |
|
Funktion | 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_maxReIm( cfVector Y, cfMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<complex<T> >::Rows_maxReIm( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MFstd;
procedure MCF_Rows_maxReIm( Y:cfVector; MA:cfMatrix; ht, len:UIntSize ); |
|
CUDA-Funktion C/C++ | #include <cudaMCFstd.h>
int cudaMCF_Rows_maxReIm( cfVector d_Y, cfMatrix d_MA, ui ht, ui len );
void MCFcu_Rows_maxReIm( cfVector h_Y, cfMatrix h_MA, ui ht, ui len ); |
CUDA-Funktion Pascal/Delphi | uses MCFstd;
function cudaMCF_Rows_maxReIm( d_Y:cfVector; d_MA:cfMatrix; ht, len:UIntSize ): IntBool;
procedure MCFcu_Rows_maxReIm( h_Y:cfVector; h_MA:cfMatrix; ht, len:UIntSize );
|
|
Beschreibung | Für i=0,..,ht-1 wird das Maximum der Realteile jeder Zeile i als Element Yi.Re gespeichert und das Maximum der Imaginärteile jeder Zeile i als Element Yi.Im. |
|
|