Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *SetRow(TMtxVecInt *Vec, int Row); | Copies values from vector to matrix row. |
| 2 | TMtxInt *SetRow(TMtxVecInt *Vec, int VecIndex, int Row, int Col, int Len); | Copy vector Vec elements [VecIndex]..[VecIndex+Len-1] to the calling matrix elements [Row,Col]..[Row,Col+Len-1]. |
Overload 1: TMtxInt *SetRow(TMtxVecInt *Vec, int Row);
Copies values from vector to matrix row.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt * | |
| 2 | Row | int |
Remarks:
Copy all Vec elements to the calling matrix Row row. The TMtxSmallInt::IntPrecision property of the calling matrix is adjusted automatically. An exception is raised, if array bounds are overrun.
See Also: TMtxSmallInt::SetCol
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler
Overload 2: TMtxInt *SetRow(TMtxVecInt *Vec, int VecIndex, int Row, int Col, int Len);
Copy vector Vec elements [VecIndex]..[VecIndex+Len-1] to the calling matrix elements [Row,Col]..[Row,Col+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Vec | TMtxVecInt * | |
| 2 | VecIndex | int | |
| 3 | Row | int | |
| 4 | Col | int | |
| 5 | Len | int |
Remarks:
An exception is raised if condition checking is enabled and array bounds are overrun.
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler