inv.js (316B)
1 export var invDocs = { 2 name: 'inv', 3 category: 'Matrix', 4 syntax: ['inv(x)'], 5 description: 'Calculate the inverse of a matrix', 6 examples: ['inv([1, 2; 3, 4])', 'inv(4)', '1 / 4'], 7 seealso: ['concat', 'det', 'diag', 'identity', 'ones', 'range', 'size', 'squeeze', 'subset', 'trace', 'transpose', 'zeros'] 8 };