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