mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
26 lines
612 B
Markdown
26 lines
612 B
Markdown
# Function resize
|
|
|
|
Resize a matrix
|
|
|
|
resize(x, size) resize(x, size, defaultValue)
|
|
|
|
|
|
### Parameters
|
|
|
|
Parameter | Type | Description
|
|
--------- | ---- | -----------
|
|
`x` | * | Array | Matrix |
|
|
`size` | Array | Matrix | One dimensional array with numbers
|
|
`defaultValue` | Number | String | Undefined by default, except in case of a string, in that case defaultValue = ' '
|
|
|
|
### Returns
|
|
|
|
Type | Description
|
|
---- | -----------
|
|
* | Array | Matrix | res
|
|
|
|
|
|
|
|
|
|
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
|