| VI_maxV | VBI_maxV | VSI_maxV | VLI_maxV | VQI_maxV |
| VU_maxV | VUB_maxV | VUS_maxV | VUL_maxV | VUI_maxV |
|
| Function | Compare each element of a vector to the corresponding element of another vector and take the larger of the two. |
|
| Syntax C/C++ | #include <VFmath.h>
void VF_maxV( fVector Z, fVector X, fVector Y, ui size ); |
| C++ VecObj | #include <OptiVec.h>
void vector<T>::maxV( const vector<T>& X, const vector<T>& Y ); |
| Pascal/Delphi | uses VFmath;
procedure VF_maxV( Z, X, Y:fVector; size:UIntSize ); |
|
| Description | Zi = Xi, if Xi > Yi
Zi = Yi, if Xi <= Yi |
|
|
|
|