Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Double NormL2(TOpenCLMatrix X) | Computes the L2 Norm for X. |
| 2 | Double NormL2(TOpenCLMatrix X, TOpenCLMatrix Y, Boolean RelativeError) | Computes the L1 Norm between X and Y. |
| 3 | Double NormL2(TOpenCLVector X) | Computes the L2 Norm for X. |
| 4 | Double NormL2(TOpenCLVector X, TOpenCLVector Y, Boolean RelativeError) | Computes the L1 Norm between X and Y. |
Overload 1: Double NormL2(TOpenCLMatrix X)
Computes the L2 Norm for X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: Double
Remarks:
Internally calls Dew.Math.clMatrix.NormL2
Overload 2: Double NormL2(TOpenCLMatrix X, TOpenCLMatrix Y, Boolean RelativeError)
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 Dew.Math.clMatrix.NormL1
Overload 3: Double NormL2(TOpenCLVector X)
Computes the L2 Norm for X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: Double
Remarks:
Internally calls Dew.Math.clVector.NormL2
Overload 4: Double NormL2(TOpenCLVector X, TOpenCLVector Y, Boolean RelativeError)
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 Dew.Math.clVector.NormL1