Overload List
Overload 1: TMtxVecInt MulAndAdd(TMtxVecInt X, TMtxVecInt Y, TMtxVecInt Z)
Compute X*Y + Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | Z | TMtxVecInt | source TVecInt or TMtxInt |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, TMtxVecInt Y, Int32 YIndex, TMtxVecInt Z, Int32 zIndex, Int32 Index, Int32 Len)
Compute X*Y + Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | YIndex | Int32 | Y start index |
| 5 | Z | TMtxVecInt | source TVecInt or TMtxInt |
| 6 | zIndex | Int32 | |
| 7 | Index | Int32 | start index |
| 8 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: TMtxVecInt MulAndAdd(TMtxVecInt X, TMtxVecInt Y, TMtxVecInt Z, Int32 zScale)
Compute X*Y + Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | Z | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | zScale | Int32 |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, TMtxVecInt Y, Int32 YIndex, TMtxVecInt Z, Int32 zIndex, Int32 zScale, Int32 Index, Int32 Len)
Compute X*Y + Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | YIndex | Int32 | Y start index |
| 5 | Z | TMtxVecInt | source TVecInt or TMtxInt |
| 6 | zIndex | Int32 | |
| 7 | zScale | Int32 | |
| 8 | Index | Int32 | start index |
| 9 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 3: TMtxVecInt MulAndAdd(TMtxVecInt X, TMtxVecInt Y, Int32 Z)
Compute X*Y + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | Z | Int32 |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, TMtxVecInt Y, Int32 YIndex, Int32 Z, Int32 Index, Int32 Len)
Compute X*Y + zScalar on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | YIndex | Int32 | Y start index |
| 5 | Z | Int32 | |
| 6 | Index | Int32 | start index |
| 7 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 4: TMtxVecInt MulAndAdd(TMtxVecInt X, TMtxVecInt Y, Int32 xyScale, TMtxVecInt Z)
Compute X*Y*xyScale + Z
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | xyScale | Int32 | |
| 4 | Z | TMtxVecInt | source TVecInt or TMtxInt |
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, TMtxVecInt Y, Int32 YIndex, Int32 xyScale, TMtxVecInt Z, Int32 zIndex, Int32 Index, Int32 Len)
Compute X*Y*xyScale + Z on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | YIndex | Int32 | Y start index |
| 5 | xyScale | Int32 | |
| 6 | Z | TMtxVecInt | source TVecInt or TMtxInt |
| 7 | zIndex | Int32 | |
| 8 | Index | Int32 | start index |
| 9 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 5: TMtxVecInt MulAndAdd(TMtxVecInt X, TMtxVecInt Y, Int32 xyScale, TMtxVecInt Z, Int32 zScale)
Compute (X*Y)*xyScale + Z*zScale
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | xyScale | Int32 | |
| 4 | Z | TMtxVecInt | source TVecInt or TMtxInt |
| 5 | zScale | Int32 |
Result: stored in self (calling object), returns self for chaining
The following expression would also run at the same or higher speed, when passing X also for the Y parameter:
X^2*xyScale + Z*zScale
Overload 6: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, TMtxVecInt Y, Int32 YIndex, Int32 xyScale, TMtxVecInt Z, Int32 zIndex, Int32 zScale, Int32 Index, Int32 Len)
Compute (X*Y)*xyScale + Z*zScale on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | YIndex | Int32 | Y start index |
| 5 | xyScale | Int32 | |
| 6 | Z | TMtxVecInt | source TVecInt or TMtxInt |
| 7 | zIndex | Int32 | |
| 8 | zScale | Int32 | |
| 9 | Index | Int32 | start index |
| 10 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 7: TMtxVecInt MulAndAdd(TMtxVecInt X, TMtxVecInt Y, Int32 xyScale, Int32 Z)
Compute (X*Y)*xyScale + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | xyScale | Int32 | |
| 4 | Z | Int32 |
Result: stored in self (calling object), returns self for chaining
Overload 8: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, TMtxVecInt Y, Int32 YIndex, Int32 xyScale, Int32 Z, Int32 Index, Int32 Len)
Compute (X*Y)*xyScale + zScalar on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 4 | YIndex | Int32 | Y start index |
| 5 | xyScale | Int32 | |
| 6 | Z | Int32 | |
| 7 | Index | Int32 | start index |
| 8 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
The following expression would also run at the same or higher speed, when passing X also for the Y parameter:
X^2*xyScale + zScale
Overload 9: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 Y, Int32 Z)
Compute (X*yScalar) + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | Y | Int32 | |
| 3 | Z | Int32 |
Result: stored in self (calling object), returns self for chaining
Overload 10: TMtxVecInt MulAndAdd(TMtxVecInt X, Int32 XIndex, Int32 Y, Int32 Z, Int32 Index, Int32 Len)
Compute (X*yScalar) + zScalar
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVecInt | source TVecInt or TMtxInt |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | Int32 | |
| 4 | Z | Int32 | |
| 5 | Index | Int32 | start index |
| 6 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining