| 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 ); |
|
| 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 |
|
|