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

18 lines (17 loc) 452 B
export const lupDocs = { 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', 'qr' ] }