VF_mantexp | VD_mantexp | VE_mantexp |
|
Funktion | Aufspaltung in Mantisse und Exponenten |
|
Syntax C/C++ | #include <VFmath.h>
int VF_mantexp( fVector MantPart, iVector ExpPart, fVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
int vector<T>::mantexp( vector<int> ExpPart, const vector<T>& X ); |
Pascal/Delphi | uses VFmath;
function VF_mantexp( MantPart:fVector; ExpPart:iVector; X:fVector; size:UIntSize ): IntBool; |
|
CUDA-Funktion C/C++ | #include <cudaVFmath.h>
int cudaVF_mantexp( fVector d_MantPart, iVector d_ExpPart, fVector d_X, ui size );
int VFcu_mantexp( fVector h_MantPart, iVector h_ExpPart, fVector h_X, ui size );
|
CUDA-Funktion Pascal/Delphi | uses VFmath;
function cudaVF_mantexp( d_MantPart:fVector; d_ExpPart:iVector; d_X:fVector; size:UIntSize ): IntBool;
function VFcu_mantexp( h_MantPart:fVector; h_ExpPart:iVector; h_X:fVector; size:UIntSize ): IntBool;
|
|
Beschreibung | Die Elemente von X werden in Mantisse und Exponenten aufgespalten. Erstere wird in MantPart gespeichert, letzterer in eine int/Integer konvertiert und in ExpPart gespeichert. |
|
|
Rückgabewert | immer FALSE(0) |
|
|