Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TMtxInt *SetIt(int ARows, int ACols, TIntPrecision aPrecision, const DewArray<int> &A); | Sets matrix values. |
| 2 | TMtxInt *SetIt(int ARows, int ACols, const DewArray<int> &A); |
Overload 1: TMtxInt *SetIt(int ARows, int ACols, TIntPrecision aPrecision, const DewArray<int> &A);
Sets matrix values.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ARows | int | |
| 2 | ACols | int | |
| 3 | aPrecision | TIntPrecision | |
| 4 | A | const DewArray<int> & |
Remarks:
Sets matrix values. This method gives you the possibility to pass large arrays of elements without having to declare constant arrays.
Pass all elements in A array to the calling matrix. The TMtxInt::Rows and TMtxInt::Cols properties of the calling matrix are set to ARows and ACols and the TMtxInt::IntPrecision property is set to aPrecision. An exception is raised if the matrix size (ARows*ACols) does not match the number of integer numbers in A.
See Also: TMtxInt::SetVal
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler
Overload 2: TMtxInt *SetIt(int ARows, int ACols, const DewArray<int> &A);
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ARows | int | |
| 2 | ACols | int | |
| 3 | A | const DewArray<int> & |
Declared in Dew::Math::TMtxInt · Dew.Math/MtxVecInt.h · Cross-compiler