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