mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
40 lines (24 loc) • 631 B
Markdown
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
# Function column
Return a column from a Matrix.
## Syntax
```js
math.column(value, index)
```
### Parameters
Parameter | Type | Description
--------- | ---- | -----------
`value` | Array | Matrix | An array or matrix
`column` | number | The index of the column
### Returns
Type | Description
---- | -----------
Array | Matrix | The retrieved column
## Examples
```js
// get a column
const d = [[1, 2], [3, 4]]
math.column(d, 1) // returns [[2], [4]]
```
## See also
[row](row.md)