VF_exp10VD_exp10VE_exp10
VFx_exp10VDx_exp10VEx_exp10
FunctionExponential function to the basis 10
Syntax C/C++#include <VFmath.h>
int VF_exp10( fVector Y, fVector X, ui size );
int VFx_exp10( fVector Y, fVector X, ui size, float A, float B, float C );
C++ VecObj#include <OptiVec.h>
int vector<T>::exp10( const vector<T>& X );
int vector<T>::x_exp10( const vector<T>& X, const T& A, const T& B, const T& C );
Pascal/Delphiuses VFmath;
function VF_exp10( Y, X:fVector; size:UInt ): IntBool;
function VFx_exp10( Y, X:fVector; size:UInt; A, B, C:Single ): IntBool;
Descriptionnormal versions: Yi = 10 Xi
expanded versions: Yi = C * 10 (A*Xi+B)
Ten is raised to the Xi'th power. These function names are used as synonyms for VF_pow10 etc.
Error handlingOVERFLOW errors lead to a default result of ±HUGE_VAL.
Return valueFALSE (0), if no error occurred, otherwise TRUE (non-zero)
See alsoVF_exp,   VF_exp2,   VF_ipow10,   VF_scale10,   VF_log10

VectorLib Table of Contents  OptiVec home