mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
19 lines
321 B
JavaScript
19 lines
321 B
JavaScript
module.exports = {
|
|
'name': 'expm1',
|
|
'category': 'Arithmetic',
|
|
'syntax': [
|
|
'expm1(x)'
|
|
],
|
|
'description': 'Calculate the value of subtracting 1 from the exponential value.',
|
|
'examples': [
|
|
'expm1(2)',
|
|
'pow(e, 2) - 1',
|
|
'log(expm1(2) + 1)'
|
|
],
|
|
'seealso': [
|
|
'exp',
|
|
'pow',
|
|
'log'
|
|
]
|
|
};
|