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
45 lines (28 loc) • 968 B
Markdown
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
Calculate the 10-base logarithm of a value. This is the same as calculating `log(x, 10)`.
For matrices, the function is evaluated element wise.
```js
math.log10(x)
```
Parameter | Type | Description
--------- | ---- | -----------
`x` | number &
Type | Description
---- | -----------
number &
```js
math.log10(0.00001) // returns -5
math.log10(10000) // returns 4
math.log(10000) / math.log(10) // returns 4
math.pow(10, 4) // returns 10000
```
[ ](exp.md),
[ ](log.md),
[ ](log1p.md),
[ ](log2.md)