VF_minpos | VD_minpos | VE_minpos |
VI_minpos | VBI_minpos | VSI_minpos | VLI_minpos | VQI_minpos | |
VU_minpos | VUB_minpos | VUS_minpos | VUL_minpos | VUQ_minpos | VUI_minpos |
|
Funktion | kleinstes positives Element eines Vektors |
|
Syntax C/C++ | #include <VFstd.h>
float VF_minpos( fVector X, ui size ); |
C++ VecObj | #include <OptiVec.h>
T vector<T>::minpos(); |
Pascal/Delphi | uses VFstd;
function VF_minpos( X:fVector; size:UIntSize ): Single; |
|
CUDA-Funktion C/C++ | #include <cudaVFstd.h>
int cudaVF_minpos( float *h_RetVal, fVector d_X, ui size );
int cusdVF_minpos( float *d_RetVal, fVector d_X, ui size );
float VFcu_minpos( fVector h_X, ui size );
|
CUDA-Funktion Pascal/Delphi | uses VFstd;
function cudaVF_minpos( var h_RetVal:Single; d_X:fVector; size:UIntSize ): IntBool;
function cusdVF_minpos( d_RetVal:PSingle; d_X:fVector; size:UIntSize ): IntBool;
function VFcu_minpos( h_X:fVector; size:UIntSize ): Single;
|
|
Beschreibung | Der Wert des kleinsten positiven und nicht-verschwindenden in X vorkommenden Elementes wird zurückgegeben (also das kleinste Xi > 0). Falls überhaupt kein Element größer als 0 ist, wird 0 zurückgegeben. |
|
|
Rückgabewert | gefundenes Minimum der positiven Werte |
|
|