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.
45 lines (27 loc) • 841 B
Markdown
Calculate the size of a matrix or scalar.
```js
math.size(x)
```
Parameter | Type | Description
--------- | ---- | -----------
`x` | Boolean &
Type | Description
---- | -----------
Array &
```js
math.size(2.3); // returns []
math.size('hello world'); // returns [11]
var A = [[1, 2, 3], [4, 5, 6]];
math.size(A); // returns [2, 3]
math.size(math.range(1,6)); // returns [5]
```
[](resize.md),
[](squeeze.md),
[](subset.md)
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->