| 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:UInt ): 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) |
|
|