| VCF_absmaxReIm | VCD_absmaxReIm | VCE_absmaxReIm |
|
| Function | Separate determination of the largest absolute values of the real and imaginary parts occurring in a cartesian complex vector. |
|
| Syntax C/C++ | #include <VCFstd.h>
fComplex VCF_absmaxReIm( cfVector X, ui size );
(similarly VCD_, VCE_) |
| C++ VecObj | #include <OptiVec.h>
complex<T> vector<complex<T>>::absmaxReIm(); |
| Pascal/Delphi | uses VCFstd;
procedure VCF_absmaxReIm( var Max:fComplex; X:cfVector; size:UIntSize );
(similarly VCD_, VCE_) |
|
| Description | The absolute values of the real parts of all vector elements are compared with each other and the largest one is returned as the real part of the result. Similarly, the absolute values of all the imaginary parts are compared with each other and the largest one is returned as the imaginary part of the result. Generally, the result is made up from different elements of the vector. |
|
|
| Return value | C/C++: Largest absolute real and imaginary parts, combined into one complex number.
Pascal/Delphi: none. |
|
|