Overload List
| # | Signature | Description |
|---|---|---|
| 1 | function SqrAddScaled(const X: TMtxInt; const Y: TMtxVecInt; const yScale: Integer): MatrixInt; | Result = sqr(X) + sqr(Y)*yScale |
| 2 | function SqrAddScaled(const X: TVecInt; const Y: TMtxVecInt; const yScale: Integer): VectorInt; | Result = sqr(X) + sqr(Y)*yScale |
| 3 | function SqrAddScaled(const X: TMtxInt; const xScale: Integer; const Y: TMtxVecInt; const yScale: Integer): MatrixInt; | Result = sqr(X)*xScale + sqr(Y)*yScale |
| 4 | function SqrAddScaled(const X: TVecInt; const xScale: Integer; const Y: TMtxVecInt; const yScale: Integer): VectorInt; | Result = sqr(X)*xScale + sqr(Y)*yScale |
Overload 1: function SqrAddScaled(const X: TMtxInt; const Y: TMtxVecInt; const yScale: Integer): MatrixInt;
Compute sqr(X) + sqr(Y)*yScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxInt | |
| 2 | Y | TMtxVecInt | |
| 3 | yScale | Integer |
Returns: MatrixInt
Overload 2: function SqrAddScaled(const X: TVecInt; const Y: TMtxVecInt; const yScale: Integer): VectorInt;
Compute sqr(X) + sqr(Y)*yScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVecInt | |
| 2 | Y | TMtxVecInt | |
| 3 | yScale | Integer |
Returns: VectorInt
Overload 3: function SqrAddScaled(const X: TMtxInt; const xScale: Integer; const Y: TMtxVecInt; const yScale: Integer): MatrixInt;
Compute sqr(X)*xScale + sqr(Y)*yScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxInt | |
| 2 | xScale | Integer | |
| 3 | Y | TMtxVecInt | |
| 4 | yScale | Integer |
Returns: MatrixInt
Overload 4: function SqrAddScaled(const X: TVecInt; const xScale: Integer; const Y: TMtxVecInt; const yScale: Integer): VectorInt;
Compute sqr(X)*xScale + sqr(Y)*yScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVecInt | |
| 2 | xScale | Integer | |
| 3 | Y | TMtxVecInt | |
| 4 | yScale | Integer |
Returns: VectorInt