mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
22 lines
359 B
JavaScript
22 lines
359 B
JavaScript
export const expDocs = {
|
|
name: 'exp',
|
|
category: 'Arithmetic',
|
|
syntax: [
|
|
'exp(x)'
|
|
],
|
|
description: 'Calculate the exponent of a value.',
|
|
examples: [
|
|
'exp(1.3)',
|
|
'e ^ 1.3',
|
|
'log(exp(1.3))',
|
|
'x = 2.4',
|
|
'(exp(i*x) == cos(x) + i*sin(x)) # Euler\'s formula'
|
|
],
|
|
seealso: [
|
|
'expm',
|
|
'expm1',
|
|
'pow',
|
|
'log'
|
|
]
|
|
}
|