|
| Function | Signum function, compares each element of a vector with 0. |
|
| Syntax C/C++ | #include <VFmath.h>
void VF_sgn( fVector Y, fVector X, ui size ); |
| C++ VecObj | #include <OptiVec.h>
void vector<T>::sgn( const vector<T>& X ); |
| Pascal/Delphi | uses VFmath;
procedure VF_sgn( Y, X:fVector; size:UInt ); |
|
| Description | Each element of X is compared with 0 and the result of the comparison stored in Y:
Yi = +1.0, if Xi > 0
Yi = 0.0, if Xi = 0
Yi = -1.0, if Xi < 0.
This function is identical to VF_cmp0. |
|
|
|
|