mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.
57 lines (36 loc) • 1.06 kB
Markdown
Create an index. An Index can store ranges having start, step, and end
for multiple dimensions.
Matrix.get, Matrix.set, and math.subset accept an Index as input.
```js
math.index(range1, range2, ...)
```
Each range can be any of:
Parameter | Type | Description
--------- | ---- | -----------
`ranges` | ...* | Zero or more ranges or numbers.
Type | Description
---- | -----------
Index | Returns the created index
```js
var math = math.js
var b = [1, 2, 3, 4, 5];
math.subset(b, math.index([1, 3])); // returns [2, 3]
var a = math.matrix([[1, 2], [3, 4]]);
a.subset(math.index(0, 1)); // returns 2
a.subset(math.index(1, null)); // returns [3, 4]
```
[](bignumber.md),
[](boolean.md),
[](complex.md),
[](matrix.md),
[](number.md),
[](string.md),
[](unit.md)
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->