mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
17 lines
364 B
JavaScript
17 lines
364 B
JavaScript
module.exports = {
|
|
'name': 'expm',
|
|
'category': 'Arithmetic',
|
|
'syntax': [
|
|
'exp(x)'
|
|
],
|
|
'description': 'Compute the matrix exponential, expm(A) = e^A. ' +
|
|
'The matrix must be square. ' +
|
|
'Not to be confused with exp(a), which performs element-wise exponentiation.',
|
|
'examples': [
|
|
'expm([[0,2],[0,0]])'
|
|
],
|
|
'seealso': [
|
|
'exp'
|
|
]
|
|
};
|