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
59 lines (52 loc) • 1.52 kB
JavaScript
import { factory } from '../../utils/factory'
import { deepMap } from '../../utils/collection'
import { expm1Number } from '../../plain/number'
const name = 'expm1'
const dependencies = ['typed', 'Complex']
export const createExpm1 = /* #__PURE__ */ factory(name, dependencies, ({ typed, Complex }) => {
/**
* Calculate the value of subtracting 1 from the exponential value.
* For matrices, the function is evaluated element wise.
*
* Syntax:
*
* math.expm1(x)
*
* Examples:
*
* math.expm1(2) // returns number 6.38905609893065
* math.pow(math.e, 2) - 1 // returns number 6.3890560989306495
* math.log(math.expm1(2) + 1) // returns number 2
*
* math.expm1([1, 2, 3])
* // returns Array [
* // 1.718281828459045,
* // 6.3890560989306495,
* // 19.085536923187668
* // ]
*
* See also:
*
* exp, log, pow
*
* @param {number | BigNumber | Complex | Array | Matrix} x A number or matrix to apply expm1
* @return {number | BigNumber | Complex | Array | Matrix} Exponent of `x`
*/
const expm1 = typed(name, {
number: expm1Number,
Complex: function (x) {
const r = Math.exp(x.re)
return new Complex(
r * Math.cos(x.im) - 1,
r * Math.sin(x.im)
)
},
BigNumber: function (x) {
return x.exp().minus(1)
},
'Array | Matrix': function (x) {
return deepMap(x, expm1)
}
})
return expm1
})