Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double NormL1(TDenseMtxVec *Vec, bool RelativeError = false); | The L1-norm. |
| 2 | double NormL1(TDenseMtxVec *Vec, int VecIndex, int Index, int Len, bool RelativeError = false); | Calculates the L1 norm ||V-Vec|| between Vec elements [VecIndex]..[VecIndex+Len-1] and calling vector elements [Index]..[Index+Len-1]. |
| 3 | double NormL1(); | Calculate the L1-norm of the calling vector. |
| 4 | double NormL1(int Index, int Len); | Calculates the L1 norm from calling vector elements [Index]..[Index+Len-1]. |
Overload 1: double NormL1(TDenseMtxVec *Vec, bool RelativeError = false);
The L1-norm.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TDenseMtxVec * | |
| 2 | RelativeError = false | bool |
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:
If RelativeError is true then the computed norm is divided by the norm of V, and the function returns the "relative error":
See Also: TVec::NormC, TVec::NormL2
Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 2: double NormL1(TDenseMtxVec *Vec, int VecIndex, int Index, int Len, bool RelativeError = false);
Calculates the L1 norm ||V-Vec|| between Vec elements [VecIndex]..[VecIndex+Len-1] and calling vector elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TDenseMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int | |
| 5 | RelativeError = false | bool |
Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 3: double NormL1();
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::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler
Overload 4: double NormL1(int Index, int Len);
Calculates the L1 norm from calling vector elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Declared in Dew::Math::TDenseMtxVec · Dew.Math/AbstractMtxVec.h · Cross-compiler