| VF_ssqdevV | VD_ssqdevV | VE_ssqdevV |
|
| Function | Sum of the squares of the deviations of the elements of one vector from the corresponding elements of another |
|
| Syntax C/C++ | #include <VFstd.h>
float VF_ssqdevV( fVector X, fVector Y, ui size ); |
| C++ VecObj | #include <OptiVec.h>
T vector<T>::ssqdevV( const vector<T>& Y ); |
| Pascal/Delphi | uses VFstd;
function VF_ssqdevV( X, Y:fVector; size:UIntSize ): Single; |
|
| Description | ssqdevV = sum( (Xi - Yi)2 )
The deviation of each element of X from the corresponding element of Y is calculated and the squares of the deviations summed up and returned. |
|
|
| Return value | sum of the squares of the deviations. |
|
|