VF_hypCVD_hypCVE_hypC
FunctionQuotient 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/Delphiuses VFmath;
procedure VF_hypC( Y, X:fVector; size:UIntSize; C:Single );
CUDA function C/C++#include <cudaVFmath.h>
#include <cudaVDmath.h>
int cudaVF_hypC( fVector d_Y, fVector d_X, ui size, float C );
int cusdVF_hypC( fVector d_Y, fVector d_X, ui size, float *d_C );
void VFcu_hypC( fVector d_Y, fVector d_X, ui size, float C );
CUDA function Pascal/Delphiuses VFmath, VDmath;
function cudaVF_hypC( d_Y, d_X:fVector; size:UIntSize; C:Single ): IntBool;
function cusdVF_hypC( d_Y, d_X:fVector; size:UIntSize; d_C:PSingle ): IntBool;
procedure VF_hypC( Y, X:fVector; size:UIntSize; C:Single );
DescriptionYi = 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.
Error handlingnone
Return valuenone
See alsoVF_hypV,   VF_redC,   VF_addC,   VF_subC,   VF_divC,   VF_visC

VectorLib Table of Contents  OptiVec home