Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxVec DivideC(TMtxVec X, TMtxVec Y, TCplx Z) | self = X / (Y*zScale) |
| └ indexed: TMtxVec DivideC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TCplx Z, Int32 Index, Int32 Len) | ||
| 2 | TMtxVec DivideC(TMtxVec X, TMtxVec Y, Double Z) | self = X / (Y*zScale) |
| └ indexed: TMtxVec DivideC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, Double Z, Int32 Index, Int32 Len) |
Overload 1: TMtxVec DivideC(TMtxVec X, TMtxVec Y, TCplx Z)
Compute X / (Y*zScale)
Result: stored in self (calling object), returns self for chaining
Indexed: TMtxVec DivideC(TMtxVec X, Int32 XIndex, TMtxVec Y, Int32 YIndex, TCplx Z, Int32 Index, Int32 Len)
Compute X / (Y*zScalar) on sub array
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxVec | source TVec or TMtx |
| 2 | XIndex | Int32 | X start index |
| 3 | Y | TMtxVec | source TVec or TMtx |
| 4 | YIndex | Int32 | Y start index |
| 5 | Z | TCplx | scalar |
| 6 | Index | Int32 | start index |
| 7 | Len | Int32 | element count |
Result: stored in self (calling object), returns self for chaining
Overload 2: TMtxVec DivideC(TMtxVec X, TMtxVec Y, Double Z)
Compute X / (Y*zScale)
Result: stored in self (calling object), returns self for chaining