Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function NormL2(X: TOpenCLMatrix): Double; | Computes the L2 Norm for X. |
| 2 | function NormL2(X: TOpenCLMatrix; Y: TOpenCLMatrix; RelativeError: Boolean): Double; | Computes the L1 Norm between X and Y. |
| 3 | function NormL2(X: TOpenCLVector): Double; | Computes the L2 Norm for X. |
| 4 | function NormL2(X: TOpenCLVector; Y: TOpenCLVector; RelativeError: Boolean): Double; | Computes the L1 Norm between X and Y. |
Overload 1: function NormL2(X: TOpenCLMatrix): Double;
Computes the L2 Norm for X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: Double
Remarks:
Internally calls clMatrix.NormL2
Overload 2: function NormL2(X: TOpenCLMatrix; Y: TOpenCLMatrix; RelativeError: Boolean): Double;
Computes the L1 Norm between X and Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | Y | TOpenCLMatrix | source TOpenCLMatrix |
| 3 | RelativeError | Boolean |
Returns: Double
Remarks:
Internally calls clMatrix.NormL1
Overload 3: function NormL2(X: TOpenCLVector): Double;
Computes the L2 Norm for X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: Double
Remarks:
Internally calls clVector.NormL2
Overload 4: function NormL2(X: TOpenCLVector; Y: TOpenCLVector; RelativeError: Boolean): Double;
Computes the L1 Norm between X and Y.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | Y | TOpenCLVector | source TOpenCLVector |
| 3 | RelativeError | Boolean |
Returns: Double
Remarks:
Internally calls clVector.NormL1