UNPKG

453 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.expmDocs = void 0;
7var expmDocs = {
8 name: 'expm',
9 category: 'Arithmetic',
10 syntax: ['exp(x)'],
11 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.',
12 examples: ['expm([[0,2],[0,0]])'],
13 seealso: ['exp']
14};
15exports.expmDocs = expmDocs;
\No newline at end of file