simple-squiggle/node_modules/mathjs/docs/reference/functions/square.md

52 lines
1.0 KiB
Markdown
Raw Normal View History

<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
# Function square
Compute the square of a value, `x * x`.
For matrices, the function is evaluated element wise.
## Syntax
```js
math.square(x)
```
### Parameters
Parameter | Type | Description
--------- | ---- | -----------
`x` | number &#124; BigNumber &#124; Fraction &#124; Complex &#124; Array &#124; Matrix &#124; Unit | Number for which to calculate the square
### Returns
Type | Description
---- | -----------
number &#124; BigNumber &#124; Fraction &#124; Complex &#124; Array &#124; Matrix &#124; Unit | Squared value
### Throws
Type | Description
---- | -----------
## Examples
```js
math.square(2) // returns number 4
math.square(3) // returns number 9
math.pow(3, 2) // returns number 9
math.multiply(3, 3) // returns number 9
math.square([1, 2, 3, 4]) // returns Array [1, 4, 9, 16]
```
## See also
[multiply](multiply.md),
[cube](cube.md),
[sqrt](sqrt.md),
[pow](pow.md)