| VF_mantexp | VD_mantexp | VE_mantexp |
|
| Function | Split up the elements of a vector into their mantissa and exponent parts |
|
| 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:UInt ): IntBool; |
|
| Description | The elements of X are split up into their mantissa, stored in MantPart, and exponent, stored as ints in ExpPart. |
|
|
| Return value | always FALSE (0) |
|
|