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