MF_Rows_absmax
| MD_Rows_absmax |
ME_Rows_absmax |
MCF_Rows_absmax |
MCD_Rows_absmax |
MCE_Rows_absmax |
|
Funktion | Betrags-Maxima der einzelnen Zeilen in einem Spalten-Vektor speichern |
|
Syntax C/C++ | #include <MFstd.h>
void MF_Rows_absmax( fVector Y, fMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<T>::Rows_absmax( const matrix<T>& MA );
void vector<T>::Rows_absmax( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MFstd;
procedure MF_Rows_absmax( Y:fVector; MA:fMatrix; ht, len:UIntSize ); |
|
CUDA-Funktion C/C++ | #include <cudaMFstd.h>
int cudaMF_Rows_absmax( fVector d_Y, fMatrix d_MA, ui ht, ui len );
int cudaMCF_Rows_absmax( fVector d_Y, cfMatrix d_MA, ui ht, ui len )
void MFcu_Rows_absmax( fVector h_Y, fMatrix h_MA, ui ht, ui len );
void MCFcu_Rows_absmax( fVector h_Y, cfMatrix h_MA, ui ht, ui len ); |
CUDA-Funktion Pascal/Delphi | uses MFstd;
function cudaMF_Rows_absmax( d_Y:fVector; d_MA:fMatrix; ht, len:UIntSize ): IntBool;
function cudaMCF_Rows_absmax( d_Y:fVector; d_MA:cfMatrix; ht, len:UIntSize ): IntBool;
procedure MFcu_Rows_absmax( h_Y:fVector; h_MA:fMatrix; ht, len:UIntSize );
procedure MCFcu_Rows_absmax( h_Y:fVector; h_MA:cfMatrix; ht, len:UIntSize );
|
|
Beschreibung | The Betrags-Maximum jeder Zeile i wird gespeichert als Element Yi für i=0,...,ht-1 |
|
|