mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
16 lines
403 B
JavaScript
16 lines
403 B
JavaScript
module.exports = {
|
|
'name': 'lusolve',
|
|
'category': 'Algebra',
|
|
'syntax': [
|
|
'x=lusolve(A, b)',
|
|
'x=lusolve(lu, b)'
|
|
],
|
|
'description': 'Solves the linear system A * x = b where A is an [n x n] matrix and b is a [n] column vector.',
|
|
'examples': [
|
|
'x=lusolve([1, 2, 3; 4, 0, 6; -7, 8, 9], [1; 2; -3])',
|
|
],
|
|
'seealso': [
|
|
'lup', 'slu', 'lsolve', 'usolve', 'matrix', 'sparse'
|
|
]
|
|
};
|