clVector::NormL1 Method

Overload List

#SignatureDescription
1double NormL1(TOpenCLMtxVec *Vec, bool RelativeError = false) const;The L1-norm.
2double NormL1(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len, bool RelativeError = false) const;Calculates the L1 norm ||V-Vec|| between Vec elements [VecIndex]..[VecIndex+Len-1] and calling vector elements [Index]..[Index+Len-1].
3double NormL1() const;Calculate the L1-norm of the calling vector.
4double NormL1(int Index, int Len) const;Calculates the L1 norm from calling vector elements [Index]..[Index+Len-1].

Overload 1: double NormL1(TOpenCLMtxVec *Vec, bool RelativeError = false) const;

The L1-norm.

#NameTypeDescription
1VecTOpenCLMtxVec *
2RelativeError = falsebool

Returns: L-1 norm, defined by: ||V-Vec||, where V is calling vector.

Remarks:

If the NormL1 is called without any parameters, the NormL1 calculates the norm of calling vector. The L1 norm of ||V-Vec|| is defined by the formula:

VVecL1=k=0Length1V[k]Vec[k]\|\text{V} - \text{Vec}\| _{L1} = \sum _{k=0} ^{\text{Length}-1}|\text{V}[k]-\text{Vec}[k]|

If RelativeError is true then the computed norm is divided by the norm of V, and the function returns the "relative error":

VVecV\frac{\| \text{V} - \text{Vec}\|}{\|\text{V}\|}
See Also: clVector::NormC, clVector::NormL2
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 2: double NormL1(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len, bool RelativeError = false) const;

Calculates the L1 norm ||V-Vec|| between Vec elements [VecIndex]..[VecIndex+Len-1] and calling vector elements [Index]..[Index+Len-1].

#NameTypeDescription
1VecTOpenCLMtxVec *
2VecIndexint
3Indexint
4Lenint
5RelativeError = falsebool
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 3: double NormL1() const;

Calculate the L1-norm of the calling vector.

Returns: L-1 norm, defined by the following equation: NormL1 = Sum(|a[i]|), 0 < i < Length-1

Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler

Overload 4: double NormL1(int Index, int Len) const;

Calculates the L1 norm from calling vector elements [Index]..[Index+Len-1].

#NameTypeDescription
1Indexint
2Lenint
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler