| VF_ipow10 | VD_ipow10 | VE_ipow10 |
|
| Funktion | ganzzahlige Potenzen von 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-Funktion 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-Funktion 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;
|
|
| Beschreibung | Yi = 10Xi
Man beachte, dass es diese Funktion (und nicht VF_pow10) ist, welche die vektorisierte Form der in Borland C definierten Funktion pow10 darstellt. |
|
| Fehlerbehandlung | OVERFLOW-Fehler ergeben HUGE_VAL. |
|
| Rückgabewert | FALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0) |
|
|