| VCFx_atan | VCDx_atan | VCEx_atan |
|
| Funktion | arcus tangens-Funktion |
|
| Syntax C/C++ | #include <VFmath.h>
int VF_atan( fVector Y, fVector X, ui size );
int VFx_atan( fVector Y, fVector X, ui size, float A, float B, float C ); |
| C++ VecObj | #include <OptiVec.h>
int vector<T>::atan( const vector<T>& X );
int vector<T>::x_atan( const vector<T>& X, const T& A, const T& B, const T& C ); |
| Pascal/Delphi | uses VFmath;
function VF_atan( Y, X:fVector; size:UIntSize ): IntBool;
function VFx_atan( Y, X:fVector; size:UIntSize; A, B, C:Single ): IntBool; |
|
| Beschreibung | normale Versionen: Yi = arctan ( Xi )
erweiterte Versionen: Yi = C * arctan (A*Xi + B ) |
|
| Fehlerbehandlung | Reelle Versionen: Solange der Parameter C in den erweiterten Formen nicht schon nahe am Überlauf ist, dürften keine Fehler auftreten.
Komplexe Versionen: Für ein Argument {0, -1} wird das Ergebnis stillschweigend auf {0, -p} gesetzt. Es folgt kein Programm-Abbruch wie bei der komplexen atan-Funktion von Borland C++. |
|
| Rückgabewert | immer FALSE(0). |
|
|