Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function Normalize(X: TOpenCLMatrix; Offset: TCplx; Factor: Double): clMatrix; | Result = (X + Offset)/Factor |
| 2 | function Normalize(X: TOpenCLMatrix; Offset: Double; Factor: Double): clMatrix; | Result = (X + Offset)/Factor |
| 3 | function Normalize(X: TOpenCLVector; Offset: TCplx; Factor: Double): clVector; | Result = (X + Offset)/Factor |
| 4 | function Normalize(X: TOpenCLVector; Offset: Double; Factor: Double): clVector; | Result = (X + Offset)/Factor |
Overload 1: function Normalize(X: TOpenCLMatrix; Offset: TCplx; Factor: Double): clMatrix;
Compute (X + Offset)/Factor
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | Offset | TCplx | scalar |
| 3 | Factor | Double | scalar |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Normalize
Overload 2: function Normalize(X: TOpenCLMatrix; Offset: Double; Factor: Double): clMatrix;
Compute (X + Offset)/Factor
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLMatrix | source TOpenCLMatrix |
| 2 | Offset | Double | scalar |
| 3 | Factor | Double | scalar |
Returns: clMatrix
Remarks:
Internally calls clMatrix.Normalize
Overload 3: function Normalize(X: TOpenCLVector; Offset: TCplx; Factor: Double): clVector;
Compute (X + Offset)/Factor
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | Offset | TCplx | scalar |
| 3 | Factor | Double | scalar |
Returns: clVector
Remarks:
Internally calls clVector.Normalize
Overload 4: function Normalize(X: TOpenCLVector; Offset: Double; Factor: Double): clVector;
Compute (X + Offset)/Factor
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TOpenCLVector | source TOpenCLVector |
| 2 | Offset | Double | scalar |
| 3 | Factor | Double | scalar |
Returns: clVector
Remarks:
Internally calls clVector.Normalize