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