| VF_sumdevV | VD_sumdevV | VE_sumdevV |
|
| Function | Sum of the absolute deviations of the elements of one vector from the corresponding elements of another |
|
| Syntax C/C++ | #include <VFstd.h>
float VF_sumdevV( fVector X, fVector Y, ui size ); |
| C++ VecObj | #include <OptiVec.h>
T vector<T>::sumdevV( const vector<T>& Y ); |
| Pascal/Delphi | uses VFstd;
function VF_sumdevV( X, Y:fVector; size:UIntSize ): Single; |
|
| Description | sumdevV = sum( |Xi - Yi| ) |
|
|
| Return value | sum of the absolute deviations. |
|
|