VF_expVD_expVE_exp
VCF_expVCD_expVCE_exp
VFx_expVDx_expVEx_exp
VCFx_expVCDx_expVCEx_exp
VCF_exptoPVCD_exptoPVCE_exptoP
FunktionExponentialfunktion
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/Delphiuses 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/Delphiuses 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;
Beschreibungeinfache 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.
FehlerbehandlungOVERFLOW-Fehler ergeben ±HUGE_VAL.
RückgabewertFALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0)
QuerverweisVF_log,   VF_expc,   VF_pow,   VF_powexp,   VF_sinh,   VF_exp2,   VF_Gauss,   VPF_logtoC,   exp

VectorLib Inhaltsverzeichnis  OptiVec Home