VCF_log10 | VCD_log10 | VCE_log10 |
VFx_log10 | VDx_log10 | VEx_log10 |
VCFx_log10 | VCDx_log10 | VCEx_log10 |
VPF_log10toC | VPD_log10toC | VPE_log10toC |
|
Funktion | dekadischer Logarithmus |
|
Syntax C/C++ | #include <VFmath.h>
int VF_log10( fVector Y, fVector X, ui size );
int VFx_log10( fVector Y, fVector X, ui size, float A, float B, float C );
int VPF_log10toC( cfVector Y, pfVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
int vector<T>::log10( const vector<T>& X );
int vector<T>::x_log10( const vector<T>& X, const T& A, const T& B, const T& C );
int vector<complex<T>>::log10toC( const vector<polar<T>>& X ); |
Pascal/Delphi | uses VFmath;
function VF_log10( Y, X:fVector; size:UIntSize ): IntBool;
function VFx_log10( Y, X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
function VPF_log10toC( Y:cfVector; X:pfVector; size:UIntSize ): IntBool; |
|
CUDA-Funktion C/C++ | #include <cudaVFmath.h>
int cudaVF_log10( fVector d_Y, fVector d_X, ui size );
int cudaVFx_log10( fVector d_Y, fVector d_X, ui size, float A, float B, float C );
int cusdVFx_log10( fVector d_Y, fVector d_X, ui size, float *d_A, float *d_B, float *d_C );
int VFcu_log10( fVector h_Y, fVector h_X, ui size );
int VFxcu_log10( fVector h_Y, fVector h_X, ui size, float A, float B, float C );
|
CUDA-Funktion Pascal/Delphi | uses VFmath;
function cudaVF_log10( d_Y, d_X:fVector; size:UIntSize ): IntBool;
function cudaVFx_log10( d_Y, d_X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
function cusdVFx_log10( d_Y, d_X:fVector; size:UIntSize; d_A, d_B, d_C:PSingle ): IntBool;
function VFcu_log10( h_Y, h_X:fVector; size:UIntSize ): IntBool;
function VFxcu_log10( h_Y, h_X:fVector; size:UIntSize; A, B, C:Single ): IntBool;
|
|
Beschreibung | einfache Versionen: Yi = lg( Xi )
erweiterte Versionen: Yi = C * lg( A*Xi+B )
Der dekadische Logarithmus, d.h. der Logarithmus zur Basis 10 wird berechnet. |
|
Fehlerbehandlung | Reelle Versionen: DOMAIN-Fehler entstehen für negative Xi (einschließlich −0.0) mit dem vorgeschlagenen Ergebnis NAN (IEEE-"Nicht-Zahl"). SING-Fehler entstehen für Xi= +0.0 und ergeben ein Resultat von -HUGE_VAL.
In den komplexen Versionen werden Zahlen mit einem Imaginärteil von 0 immer als reelle Zahlen behandelt. Daher wird ein Argument von {0, 0} als reelle 0 angesehen, die einen SING-Fehler mit dem Ergebnis {-HUGE_VAL, 0} zur Folge hat. |
|
Rückgabewert | FALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0) |
|
Querverweis | VF_pow10, VF_log, VF_log2, VF_pow, log10 (diese Funktion ist in ANSI C definiert; für Pascal/Delphi wird sie in der mit OptiVec ausgelieferten unit XMATH zur Verfügung gestellt). |
|