expm.js (453B)
1 "use strict"; 2 3 Object.defineProperty(exports, "__esModule", { 4 value: true 5 }); 6 exports.expmDocs = void 0; 7 var 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 }; 15 exports.expmDocs = expmDocs;