VF_hypotCVD_hypotCVE_hypotC
FunktionHypotenuse (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/Delphiuses 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/Delphiuses 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;
BeschreibungYi = sqrt( Xi2 + C2 )
Diese Funktion ist eine Variante des Pythagoras-Theorems zur Berechnung der Hypotenuse eines rechtwinkligen Dreiecks.
FehlerbehandlungOVERFLOW-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ückgabewertFALSE (0), wenn fehlerfrei, andernfalls TRUE (≠ 0).
QuerverweisVF_hypotV,   VF_redC,   VF_visC,   VCF_abs,   hypot

VectorLib Inhaltsverzeichnis  OptiVec Home