Overload List
| # | Signature | Description |
|---|---|---|
| 1 | MatrixInt SqrAddScaled(TMtxInt X, TMtxVecInt Y, Int32 yScale) | Result = sqr(X) + sqr(Y)*yScale |
| 2 | VectorInt SqrAddScaled(TVecInt X, TMtxVecInt Y, Int32 yScale) | Result = sqr(X) + sqr(Y)*yScale |
| 3 | MatrixInt SqrAddScaled(TMtxInt X, Int32 xScale, TMtxVecInt Y, Int32 yScale) | Result = sqr(X)*xScale + sqr(Y)*yScale |
| 4 | VectorInt SqrAddScaled(TVecInt X, Int32 xScale, TMtxVecInt Y, Int32 yScale) | Result = sqr(X)*xScale + sqr(Y)*yScale |
Overload 1: MatrixInt SqrAddScaled(TMtxInt X, TMtxVecInt Y, Int32 yScale)
Compute sqr(X) + sqr(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 SqrAddScaled(TVecInt X, TMtxVecInt Y, Int32 yScale)
Compute sqr(X) + sqr(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 SqrAddScaled(TMtxInt X, Int32 xScale, TMtxVecInt Y, Int32 yScale)
Compute sqr(X)*xScale + sqr(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 SqrAddScaled(TVecInt X, Int32 xScale, TMtxVecInt Y, Int32 yScale)
Compute sqr(X)*xScale + sqr(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