MCF_Rows_cabsmax
| MCD_Rows_cabsmax |
MCE_Rows_cabsmax |
|
Function | Find the complex numbers of largest magnitude along rows and store them in a column vector |
|
Syntax C/C++ | #include <MCFstd.h>
void MCF_Rows_cabsmax( cfVector Y, cfMatrix MA, ui ht, ui len ); |
C++ MatObj | #include <OptiVec.h>
void vector<complex<T> T>::Rows_cabsmax( const matrix<complex<T> >& MA ); |
Pascal/Delphi | uses MCFstd;
procedure MCF_Rows_cabsmax( Y:cfVector; MA:cfMatrix; ht, len:UIntSize ); |
|
CUDA function C/C++ | #include <cudaMCFstd.h>
int cudaMCF_Rows_cabsmax( cfVector d_Y, cfMatrix d_MA, ui ht, ui len );
void MCFcu_Rows_cabsmax( cfVector h_Y, cfMatrix h_MA, ui ht, ui len ); |
CUDA function Pascal/Delphi | uses MCFstd;
function cudaMCF_Rows_cabsmax( d_Y:cfVector; d_MA:cfMatrix; ht, len:UIntSize ): IntBool;
procedure MCFcu_Rows_cabsmax( h_Y:cfVector; h_MA:cfMatrix; ht, len:UIntSize );
|
|
Description | Within each row i of MA, the complex number of largest magnitude, sqrt(Re2+Im2), is found and stored as the element Yi for i=0,..,ht-1 |
|
|