mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
18 lines
398 B
JavaScript
18 lines
398 B
JavaScript
module.exports = {
|
|
'name': 'lsolve',
|
|
'category': 'Algebra',
|
|
'syntax': [
|
|
'x=lsolve(L, b)'
|
|
],
|
|
'description':
|
|
'Solves the linear system L * x = b where L is an [n x n] lower triangular matrix and b is a [n] column vector.',
|
|
'examples': [
|
|
'a = [-2, 3; 2, 1]',
|
|
'b = [11, 9]',
|
|
'x = lsolve(a, b)'
|
|
],
|
|
'seealso': [
|
|
'lup', 'lusolve', 'usolve', 'matrix', 'sparse'
|
|
]
|
|
};
|