VF_hypotC | VD_hypotC | VE_hypotC |
|
Funktion | Hypotenuse (Pythagoras-Funktion) |
|
Syntax C/C++ | #include <VFmath.h>
int VF_hypotC( fVector Y, fVector X, ui size, float C ); |
C++ VecObj | #include <OptiVec.h>
int vector<T>::hypotC( const vector<T>& X, const T& C ); |
Pascal/Delphi | uses VFmath;
function VF_hypotC( Y, X:fVector; size:UIntSize; C:Single ): IntBool; |
|
CUDA-Funktion C/C++ | #include <cudaVFmath.h>
int cudaVF_hypotC( fVector d_Y, fVector d_X, ui size, float C );
int cusdVF_hypotC( fVector d_Y, fVector d_X, ui size, float *d_C );
int VFcu_hypotC( fVector d_Y, fVector d_X, ui size, float C );
|
CUDA-Funktion Pascal/Delphi | uses VFmath;
function cudaVF_hypotC( d_Y, d_X:fVector; size:UIntSize; C:Single ): IntBool;
function cusdVF_hypotC( d_Y, d_X:fVector; size:UIntSize; d_C:PSingle ): IntBool;
function VF_hypotC( Y, X:fVector; size:UIntSize; C:Single ): IntBool;
|
|
Beschreibung | Yi = sqrt( Xi2 + C2 )
Diese Funktion ist eine Variante des Pythagoras-Theorems zur Berechnung der Hypotenuse eines rechtwinkligen Dreiecks. |
|
Fehlerbehandlung | OVERFLOW-Fehler führen zum Ergebnis-Vorschlag HUGE_VAL. Im Unterschied zu der Behandlung der ANSI−C-Funktion hypot bei vielen Compilern wird ein Überlauf des Zwischenergebnisses Xi2 + C2 durch geeignete Maßnahmen ausgeschlossen. |
|
Rückgabewert | FALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0). |
|
|