VF_ipow10 | VD_ipow10 | VE_ipow10 |
|
Function | Integer powers of 10 |
|
Syntax C/C++ | #include <VFmath.h>
int VF_ipow10( fVector Y, iVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
int vector<T>::ipow10( const vector<T>& X ); |
Pascal/Delphi | uses VFmath;
function VF_ipow10( Y:fVector; X:iVector; size:UIntSize ): IntBool; |
|
CUDA function C/C++ | #include <cudaVFmath.h>
int cudaVF_ipow10( fVector d_Y, iVector d_X, ui size );
int VFcu_ipow10( fVector h_Y, iVector h_X, ui size );
|
CUDA function Pascal/Delphi | uses VFmath;
function cudaVF_ipow10( d_Y:fVector; d_X:iVector; size:UIntSize ): IntBool;
function VFcu_ipow10( h_Y:fVector; h_X:iVector; size:UIntSize ): IntBool;
|
|
Description | Yi = 10Xi
Notice: this function (and not VF_pow10 !) is the vectorized form of the function pow10 defined in Borland C/C++. |
|
Error handling | OVERFLOW errors lead to a default result of HUGE_VAL. |
|
Return value | FALSE (0), if no error occurred, otherwise TRUE (non-zero) |
|
|