mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
1.0 KiB
1.0 KiB
| layout |
|---|
| default |
Function row #
Return a row from a Matrix.
Syntax #
math.row(value, index)
Parameters #
| Parameter | Type | Description |
|---|---|---|
value |
Array | Matrix | An array or matrix |
row |
number | The index of the row |
Returns #
| Type | Description |
|---|---|
| Array | Matrix | The retrieved row |
Examples #
// get a row
const d = [[1, 2], [3, 4]]
math.row(d, 1) // returns [[3, 4]]