Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function NormC(X: TOpenCLMatrix): Double; | Computes the C Norm for the source data X. |
| 2 | function NormC(X: TOpenCLMatrix; Y: TOpenCLMatrix; RelativeError: Boolean): Double; | Computes the C Norm between X and Y. |
| 3 | function NormC(X: TOpenCLVector): Double; | Computes the C Norm for the source data X. |
| 4 | function NormC(X: TOpenCLVector; Y: TOpenCLVector; RelativeError: Boolean): Double; | Computes the C Norm between X and Y. |
Overload 1: function NormC(X: TOpenCLMatrix): Double;
Computes the C Norm for the source data X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
Returns: Double
Remarks:
Internally calls clMatrix.NormC
Overload 2: function NormC(X: TOpenCLMatrix; Y: TOpenCLMatrix; RelativeError: Boolean): Double;
Computes the C 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.NormC
Overload 3: function NormC(X: TOpenCLVector): Double;
Computes the C Norm for the source data X.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
Returns: Double
Remarks:
Internally calls clVector.NormC
Overload 4: function NormC(X: TOpenCLVector; Y: TOpenCLVector; RelativeError: Boolean): Double;
Computes the C 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.NormC