| VF_expmx2 | VD_expmx2 | VE_expmx2 |
| VFx_expmx2 | VDx_expmx2 | VEx_expmx2 |
|
| Function | Exponential function of the negative square of the argument |
|
| Syntax C/C++ | #include <VFmath.h>
int VF_expmx2( fVector Y, fVector X, ui size );
int VFx_expmx2( fVector Y, fVector X, ui size, float A, float B, float C ); |
| C++ VecObj | #include <OptiVec.h>
int vector<T>::expmx2( const vector<T>& X );
int vector<T>::x_expmx2( const vector<T>& X, const T& A, const T& B, const T& C ); |
| Pascal/Delphi | uses VFmath;
function VF_expmx2( Y, X:fVector; size:UIntSize ): IntBool;
function VFx_expmx2( Y, X:fVector; size:UIntSize; A, B, C:Single ): IntBool; |
|
| Description | normal versions: Yi = exp( -Xi2 )
expanded versions: Yi = C * exp( -(A*Xi+B)2 )
This function yields a bell-shaped curve similar to the Gaussian function. |
|
| Error handling | This function should be error-proof. |
|
| Return value | always FALSE (0) |
|
|