| Syntax C/C++ | #include <VFmath.h>
int VF_expArbBase( fVector Y, fVector X, ui size, float Base );
int VFx_expArbBase( fVector Y, fVector X, ui size, float Base, float A, float B, float C ); |
| C++ VecObj | #include <OptiVec.h>
int vector<T>::expArbBase( const vector<T>& X, const T& Base );
int vector<T>::x_expArbBase( const vector<T>& X, const T& Base, const T& A, const T& B, const T& C ); |
| Pascal/Delphi | uses VFmath;
function VF_expArbBase( Y, X:fVector; size:UIntSize; Base:Single ): IntBool;
function VFx_expArbBase( Y, X:fVector; size:UIntSize; Base, A, B, C:Single ): IntBool; |
|