VF_scale2 | VD_scale2 | VE_scale2 |
|
Funktion | Skalierung mit ganzzahligen Potenzen von 2 |
|
Syntax C/C++ | #include <VFmath.h>
int VF_scale2( fVector Y, fVector X, ui size, int Expo ); |
C++ VecObj | #include <OptiVec.h>
int vector<T>::scale2( const vector<T>& X, int Expo ); |
Pascal/Delphi | uses VFmath;
function VF_scale2( Y, X:fVector; size:UIntSize; Expo:Integer ): IntBool; |
|
CUDA-Funktion C/C++ | #include <cudaVFmath.h>
int cudaVF_scale2( fVector d_Y, fVector d_X, ui size, int Expo );
int VFcu_scale2( fVector h_Y, fVector h_X, ui size, int Expo );
|
CUDA-Funktion Pascal/Delphi | uses VFmath;
function cudaVF_scale2( d_Y, d_X:fVector; size:UIntSize; Expo:Integer ): IntBool;
function VFcu_scale2( h_Y, h_X:fVector; size:UIntSize; Expo:Integer ): IntBool;
|
|
Beschreibung | Yi = Xi * (2 Expo) |
|
Fehlerbehandlung | OVERFLOW-Fehler ergeben ±HUGE_VAL. |
|
Rückgabewert | FALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0) |
|
|