VCF_exptoP | VCD_exptoP | VCE_exptoP |
|
Funktion | Exponentialfunktion |
|
Syntax C/C++ | #include <VFmath.h>
int VF_exp( fVector Y, fVector X, ui size );
int VFx_exp( fVector Y, fVector X, ui size, float A, float B, float C );
int VCF_exptoP( pfVector Y, cfVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
int vector<T>::exp( const vector<T>& X );
int vector<T>::x_exp( const vector<T>& X, const T& A, const T& B, const T& C );
int vector<polar<T>>::exptoP( const vector<complex<T>>& X ); |
Pascal/Delphi | uses VFmath;
function VF_exp( Y, X:fVector; size:UIntSize ): IntBool;
function VFx_exp( Y, X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
function VCF_exptoP( Y:pfVector; X:cfVector; size:UIntSize ): IntBool; |
|
CUDA-Funktion C/C++ | #include <cudaVFmath.h>
int cudaVF_exp( fVector d_Y, fVector d_X, ui size );
int cudaVFx_exp( fVector d_Y, fVector d_X, ui size, float A, float B, float C );
int cusdVFx_exp( fVector d_Y, fVector d_X, ui size, float *d_A, float *d_B, float *d_C );
int VFcu_exp( fVector h_Y, fVector h_X, ui size );
int VFxcu_exp( fVector h_Y, fVector h_X, ui size, float A, float B, float C );
|
CUDA-Funktion Pascal/Delphi | uses VFmath;
function cudaVF_exp( d_Y, d_X:fVector; size:UIntSize ): IntBool;
function cudaVFx_exp( d_Y, d_X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
function cusdVFx_exp( d_Y, d_X:fVector; size:UIntSize; d_A, d_B, d_C:PSingle ): IntBool;
function VFcu_exp( h_Y, h_X:fVector; size:UIntSize ): IntBool;
function VFxcu_exp( h_Y, h_X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
|
|
Beschreibung | einfache Versionen: Yi = exp( Xi )
erweiterte Versionen: Yi = C * exp( A*Xi+B )
Die Euler'sche Konstante e wird in die Xi-te Potenz erhoben.
Für cartesisch-komplexe Eingabezahlen kann das Ergebnis entweder wieder im cartesisch-komplexen Format (VCF_exp) oder in Polarkoordinaten (VCF_exptoP) gespeichert werden.
Es existieren etliche von der Exponentialfunktion abgeleitete Funktionen, z.B. ihr Komplement (VF_expc), die Hyperbelfunktionen (z.B. VF_sinh) oder die Gauss'sche Verteilungsfunktion (VF_Gauss); siehe Kap. 4.6.7. |
|
Fehlerbehandlung | OVERFLOW-Fehler ergeben ±HUGE_VAL. |
|
Rückgabewert | FALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0) |
|
|