| MCF_Cols_sabsmax
| MCD_Cols_sabsmax |
MCE_Cols_sabsmax |
|
| Function | Find the complex numbers of largest sum |Re| + |Im| along columns and store them in a row vector |
|
| Syntax C/C++ | #include <MCFstd.h>
void MCF_Cols_sabsmax( cfVector Y, cfMatrix MA, ui ht, ui len ); |
| C++ MatObj | #include <OptiVec.h>
void vector<complex<T> T>::Cols_sabsmax( const matrix<complex<T> >& MA ); |
| Pascal/Delphi | uses MCFstd;
procedure MCF_Cols_sabsmax( Y:cfVector; MA:cfMatrix; ht, len:UIntSize ); |
|
| Description | Within each column j of MA, the complex number with the largest sum, |Re| + |Im|, is found and stored as the element Yj for j=0,..,len-1 |
|
|