mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
18 lines
412 B
JavaScript
18 lines
412 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': [
|
|
'a = [-2, 3; 2, 1]',
|
|
'b = [11, 9]',
|
|
'x = lusolve(a, b)'
|
|
],
|
|
'seealso': [
|
|
'lup', 'slu', 'lsolve', 'usolve', 'matrix', 'sparse'
|
|
]
|
|
};
|