| VCF_absminReIm | VCD_absminReIm | VCE_absminReIm |
|
| Function | Separate determination of the smallest absolute values of the real and imaginary parts occurring in a cartesian complex vector. |
|
| Syntax C/C++ | #include <VCFstd.h>
fComplex VCF_absminReIm( cfVector X, ui size );
(similarly VCD_, VCE_) |
| C++ VecObj | #include <OptiVec.h>
complex<T> vector<complex<T>>::absminReIm(); |
| Pascal/Delphi | uses VCFstd;
procedure VCF_absminReIm( var Min: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 smallest 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 smallest 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++: Smallest absolute real and imaginary parts, combined into one complex number.
Pascal/Delphi: none |
|
|