1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
[//]: # (generated using SlashBack 0.2.0)
# matrix\_access methods
The following methods are all part of the **matrix\_access methods**\.
Defines functions to access rows or columns of a matrix easily\.
## Table of contents
* [**column** function](#column-function)
* [**row** function](#row-function)
### column\(\) function
#### <code>glm.<code>**column**(**m**: *matNxM*, **index**: *int*) -\> *vecM*</code></code>
  Get a specific column of a matrix\.
#### <code>glm.<code>**column**(**m**: *matNxM*, **index**: *int*, **x**: *vecM*) -\> *matNxM*</code></code>
  Set a specific column to a matrix\.
### row\(\) function
#### <code>glm.<code>**row**(**m**: *matNxM*, **index**: *int*) -\> *vecN*</code></code>
  Get a specific row of a matrix\.
#### <code>glm.<code>**row**(**m**: *matNxM*, **index**: *int*, **x**: *vecN*) -\> *matNxM*</code></code>
  Set a specific row to a matrix\.
|