Overload List
| # | Signature | Description |
|---|---|---|
| 1 | TVec *GetRow(TMtx *Mtx, int aRow) const; | Copies a row from matrix. |
| 2 | TVec *GetRow(TMtx *Mtx, int aRow, int aCol, int Index, int Len) const; | Copy the Row-th column elements [Col]..[Col+Len-1] to calling vector elements [Index]..[Index+Len-1]. |
| 3 | TVec *GetRow(TMtx *Mtx, int aRow, int aCol, int Len) const; | Copy the Row-th column elements [Col]..[Col+Len-1] to calling vector. |
Overload 1: TVec *GetRow(TMtx *Mtx, int aRow) const;
Copies a row from matrix.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx * | |
| 2 | aRow | int |
Copies the Row-th row from Mtx matrix to calling vector. The Vector::Length and Vector::Complex properties of calling vector are adjusted automatically. An exception is raised if condition checking is enabled and Row is greater than Mtx.Rows-1.
Overload 2: TVec *GetRow(TMtx *Mtx, int aRow, int aCol, int Index, int Len) const;
Copy the Row-th column elements [Col]..[Col+Len-1] to calling vector elements [Index]..[Index+Len-1].
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx * | |
| 2 | aRow | int | |
| 3 | aCol | int | |
| 4 | Index | int | |
| 5 | Len | int |
The Vector::Complex property of calling vector must be set explicitly. An exception is raised if condition checking is enabled and column array borders are overrun.
Overload 3: TVec *GetRow(TMtx *Mtx, int aRow, int aCol, int Len) const;
Copy the Row-th column elements [Col]..[Col+Len-1] to calling vector.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | Mtx | TMtx * | |
| 2 | aRow | int | |
| 3 | aCol | int | |
| 4 | Len | int |
The Vector::Length and Vector::Complex properties of calling vector are adjusted automatically. An exception is raised if condition checking is enabled and column array borders are overrun.