UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif

14 lines (13 loc) 435 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.invDocs = void 0; const invDocs = exports.invDocs = { name: 'inv', category: 'Matrix', syntax: ['inv(x)'], description: 'Calculate the inverse of a matrix', examples: ['inv([1, 2; 3, 4])', 'inv(4)', '1 / 4'], seealso: ['concat', 'det', 'diag', 'identity', 'ones', 'range', 'size', 'squeeze', 'subset', 'trace', 'transpose', 'zeros'] };