|
| Function | Quotient of Xi over the sum of Xi and a constant. |
|
| Syntax C/C++ | #include <VFmath.h>
void VF_hypC( fVector Y, fVector X, ui size, float C ); |
| C++ VecObj | #include <OptiVec.h>
void vector<T>::hypC( const vector<T>& X, const T& C ); |
| Pascal/Delphi | uses VFmath;
procedure VF_hypC( Y, X:fVector; size:UIntSize; C:Single ); |
|
| Description | Yi = hyp( Xi, C ) = Xi / (Xi + C)
The function calculating Yi according to this formula is dubbed "hyp" for its formal similarity to the expression constructing a hyperbola. |
|
|
|
|