Skip to content

Commit

Permalink
Fix #2128: typo in docs of luSolveAll and usolveAll
Browse files Browse the repository at this point in the history
  • Loading branch information
josdejong committed Mar 9, 2021
1 parent 54570e5 commit 1587d12
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# History

# not yet published, version 9.2.1

- Fix #2128: typo in docs of `luSolveAll` and `usolveAll`.

# 2020-02-03, version 9.2.0

- Implemented function `count` to count the total elements in a matrix,
Expand Down
4 changes: 2 additions & 2 deletions src/function/algebra/solver/lsolveAll.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ export const createLsolveAll = /* #__PURE__ */ factory(name, dependencies, ({ ty
*
* Syntax:
*
* math.lsolve(L, b)
* math.lsolveAll(L, b)
*
* Examples:
*
* const a = [[-2, 3], [2, 1]]
* const b = [11, 9]
* const x = lsolve(a, b) // [ [[-5.5], [20]] ]
* const x = lsolveAll(a, b) // [ [[-5.5], [20]] ]
*
* See also:
*
Expand Down
4 changes: 2 additions & 2 deletions src/function/algebra/solver/usolveAll.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ export const createUsolveAll = /* #__PURE__ */ factory(name, dependencies, ({ ty
*
* Syntax:
*
* math.usolve(U, b)
* math.usolveAll(U, b)
*
* Examples:
*
* const a = [[-2, 3], [2, 1]]
* const b = [11, 9]
* const x = usolve(a, b) // [ [[8], [9]] ]
* const x = usolveAll(a, b) // [ [[8], [9]] ]
*
* See also:
*
Expand Down

0 comments on commit 1587d12

Please sign in to comment.