Overload List
| # | Signature | Description |
|---|---|---|
| 1 | double NormC(TOpenCLMtxVec *Vec, bool RelativeError = false) const; | The C-norm. |
| 2 | double NormC(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len, bool RelativeError = false) const; | Calculates the C norm ||V-Vec|| between Vec elements [VecIndex]..[VecIndex+Len-1] and calling vector elements [Index]..[Index+Len-1]. |
| 3 | double NormC() const; | Calculate the C-norm of calling vector. |
| 4 | double NormC(int Index, int Len) const; | Calculates the C norm from calling vector elements [Index]..[Index+Len-1]. |
Overload 1: double NormC(TOpenCLMtxVec *Vec, bool RelativeError = false) const;
The C-norm.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * | |
| 2 | RelativeError = false | bool |
Returns: C norm: ||V-Vec||, where V is the calling vector.
Remarks:
If the NormC is called without any parameters, the NormC calculates the norm of the calling vector. The C 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: clVector::NormL1, clVector::NormL2
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 2: double NormC(TOpenCLMtxVec *Vec, int VecIndex, int Index, int Len, bool RelativeError = false) const;
Calculates the C norm ||V-Vec|| between Vec elements [VecIndex]..[VecIndex+Len-1] and calling vector elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TOpenCLMtxVec * | |
| 2 | VecIndex | int | |
| 3 | Index | int | |
| 4 | Len | int | |
| 5 | RelativeError = false | bool |
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 3: double NormC() const;
Calculate the C-norm of calling vector.
Returns: NormC = max|a[i]|, 0 < i < Length-1 .
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler
Overload 4: double NormC(int Index, int Len) const;
Calculates the C norm from calling vector elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Index | int | |
| 2 | Len | int |
Declared in Dew::Math::clVector · Dew.Math/clMtxExpr.h · Cross-compiler