VF_pow10VD_pow10VE_pow10
VFx_pow10VDx_pow10VEx_pow10
FunctionReal powers of 10
Syntax C/C++#include <VFmath.h>
int VF_pow10( fVector Y, fVector X, ui size );
int VFx_pow10( fVector Y, fVector X, ui size, float A, float B, float C );
C++ VecObj#include <OptiVec.h>
int vector<T>::pow10( const vector<T>& X );
int vector<T>::x_pow10( const vector<T>& X, const T& A, const T& B, const T& C );
Pascal/Delphiuses VFmath;
function VF_pow10( Y, X:fVector; size:UInt ): IntBool;
function VFx_pow10( Y, X:fVector; size:UInt; A, B, C:Single ): IntBool;
Descriptionnormal versions: Yi = 10.0 Xi
expanded versions: Yi = C * 10.0A*Xi+B
This is an exponential function to the basis of 10.0.
Error handlingOVERFLOW errors lead to a default result of ±HUGE_VAL.
Return valueFALSE (0), if no error occurred, otherwise TRUE (non-zero)
See alsoVF_ipow10,   VF_scale10,   VF_log10,   VF_pow,   VF_exp,   pow10

VectorLib Table of Contents  OptiVec home