VF_replaceNAN | VD_replaceNAN | VE_replaceNAN |
VCF_replaceNAN | VCD_replaceNAN | VCE_replaceNAN |
VPF_replaceNAN | VPD_replaceNAN | VPE_replaceNAN |
|
Funktion | Ersatz von NAN durch eine beliebige Zahl |
|
Syntax C/C++ | #include <VFmath.h>
void VF_replaceNAN( fVector Y, fVector X, ui size, float C );
void VCF_replaceNAN( fVector Y, fVector X, ui size, fComplex C ); |
C++ VecObj | #include <OptiVec.h>
void vector<T>::replaceNAN( const vector<T>& X, const T& C );
void vector<T>::replaceNAN( const vector<T>& X, complex<T> C ); |
Pascal/Delphi | uses VFmath;
procedure VF_replaceNAN( Y, X:fVector; size:UIntSize; C:Single );
procedure VCF_replaceNAN( Y, X:cfVector; size:UIntSize; C:fComplex ); |
|
CUDA-Funktion C/C++ | #include <cudaVFmath.h>
int cudaVF_replaceNAN( fVector d_Y, fVector d_X, ui size, float C );
int cusdVF_replaceNAN( fVector d_Y, fVector d_X, ui size, float *d_C );
void VFcu_replaceNAN( fVector h_Y, fVector h_X, ui size, float C );
|
CUDA-Funktion Pascal/Delphi | uses VFmath;
function cudaVF_replaceNAN( d_Y, d_X:fVector; size:UIntSize; C:Single ): IntBool;
function cusdVF_replaceNAN( d_Y, d_X:fVector; size:UIntSize; d_C:PSingle ): IntBool;
procedure VFcu_replaceNAN( h_Y, h_X:fVector; size:UIntSize; C:Single );
|
|
Beschreibung | X wird in Y kopiert, wobei alle NAN ("not a number", IEEE-Nicht-Zahlen), seien es SNaN oder QNaN, durch einen benutzer-definierten Wert C ersetzt werden. |
|
|
|
|