UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.

18 lines (17 loc) 453 B
module.exports = { 'name': 'lup', 'category': 'Algebra', 'syntax': [ 'lup(m)' ], 'description': 'Calculate the Matrix LU decomposition with partial pivoting. Matrix A is decomposed in three matrices (L, U, P) where P * A = L * U', 'examples': [ 'lup([[2, 1], [1, 4]])', 'lup(matrix([[2, 1], [1, 4]]))', 'lup(sparse([[2, 1], [1, 4]]))' ], 'seealso': [ 'lusolve', 'lsolve', 'usolve', 'matrix', 'sparse', 'slu' ] };