Overload List
| # | Signature | Description |
|---|---|---|
| 1 | MatrixInt Divide(TMtxInt X, TMtxVecInt Y, TMtxVecInt Z) | Result = X / (Y*Z) |
| 2 | VectorInt Divide(TVecInt X, TMtxVecInt Y, TMtxVecInt Z) | Result = X / (Y*Z) |
| 3 | MatrixInt Divide(Int32 X, TMtxInt Y, TMtxVecInt Z) | Result = xScalar / (Y*Z) |
| 4 | VectorInt Divide(Int32 X, TVecInt Y, TMtxVecInt Z) | Result = xScalar / (Y*Z) |
Overload 1: MatrixInt Divide(TMtxInt X, TMtxVecInt Y, TMtxVecInt Z)
Compute X / (Y*Z)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TMtxInt | source TMtxInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | Z | TMtxVecInt | source TVecInt or TMtxInt |
Returns: MatrixInt
Overload 2: VectorInt Divide(TVecInt X, TMtxVecInt Y, TMtxVecInt Z)
Compute X / (Y*Z)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | TVecInt | source TVecInt |
| 2 | Y | TMtxVecInt | source TVecInt or TMtxInt |
| 3 | Z | TMtxVecInt | source TVecInt or TMtxInt |
Returns: VectorInt
Overload 3: MatrixInt Divide(Int32 X, TMtxInt Y, TMtxVecInt Z)
Compute xScalar / (Y*Z)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int32 | |
| 2 | Y | TMtxInt | source TMtxInt |
| 3 | Z | TMtxVecInt | source TVecInt or TMtxInt |
Returns: MatrixInt
Overload 4: VectorInt Divide(Int32 X, TVecInt Y, TMtxVecInt Z)
Compute xScalar / (Y*Z)
| # | Name | Type | Description |
|---|---|---|---|
| 1 | X | Int32 | |
| 2 | Y | TVecInt | source TVecInt |
| 3 | Z | TMtxVecInt | source TVecInt or TMtxInt |
Returns: VectorInt