VF_runintegralV | VD_runintegralV | VE_runintegralV |
|
Function | "running integral" |
|
Syntax C/C++ | #include <VFmath.h>
void VF_runintegralV( fVector Z, fVector X, fVector Y, ui size ); |
C++ VecObj | #include <OptiVec.h>
void vector<T>::runintegralV( const vector<T>& X, const vector<T>& Y ); |
Pascal/Delphi | uses VFmath;
procedure VF_runintegralV( Z, X, Y:fVector; size:UIntSize ); |
|
CUDA function C/C++ | #include <cudaVFstd.h>
int cudaVF_runintegralV( fVector d_Z, fVector d_X, fVector d_Y, ui size );
void VFcu_runintegralV( fVector h_Z, fVector h_X, fVector h_Y, ui size );
|
CUDA function Pascal/Delphi | uses VFstd;
function cudaVF_runintegralV( d_Z, d_X, d_Y:fVector; size:UIntSize );
procedure VFcu_runintegralV( h_Z, h_X, h_Y:fVector; size:UIntSize );
|
|
Description | Y is a function of the variable x which is represented by X. Each element of Z is the integral over all elements of Y up to and including the one with the same index. The first element of Z is always FALSE (0).0. The last element of Z is equal to the value of the integral, i.e. to the area under Y. If only this value of the integral is of interest, VF_integralV should be used. |
|
|
|
|