| VF_integralV | VD_integralV | VE_integralV |
|
|
| Syntax C/C++ | #include <VFstd.h>
float VF_integralV( fVector X, fVector Y, ui size ); |
| C++ VecObj | #include <OptiVec.h>
T vector<T>::integralV( const vector<T>& X ); |
| Pascal/Delphi | uses VFstd;
function VF_integralV( X, Y:fVector; size:UInt ): Single; |
|
| Description | The vector Y is assumed to be a function of X; the integral of Y over X is calculated. If the elements of X are regularly spaced with a constant difference between them, the integral is obtained more efficiently by VF_integralC. If not only the value of the integral is of interest, but a point-by-point integration has to be performed, VF_runintegralV may be used. |
|
|
| Return value | The value of the integral is returned. |
|
|