Skip to content

Commit

Permalink
Text edit.
Browse files Browse the repository at this point in the history
  • Loading branch information
cuihantao committed Oct 4, 2024
1 parent a1e3cd4 commit 007fac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pct/modules/04/linear-equations.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
"source": [
"### LU Decomposition\n",
"\n",
"LU decomposition is a way to turn a square matrix $A$ into a lower triangular matrix $L$ and an upper triangular matrix $U$, so that $A = PLU$, where `P` is a permutation matrix, and `L` and `U` are lower and upper triangular matrices.\n",
"LU decomposition (also called LU factorization) is a way to turn a square matrix $A$ into a lower triangular matrix $L$ and an upper triangular matrix $U$, so that $A = PLU$, where `P` is a permutation matrix, and `L` and `U` are lower and upper triangular matrices.\n",
"\n",
"SciPy allows one to decompose a matrix into LU with `scipy.linalg.lu` and reapply the decomposition to solve different right-hand side vectors.\n"
]
Expand Down

0 comments on commit 007fac6

Please sign in to comment.