You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/lapack/base/dgttrf/README.md
+58Lines changed: 58 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,14 +26,28 @@ limitations under the License.
26
26
27
27
The `dgttrf` routine computes an LU factorization of a real n-by-n tridiagonal matrix A using elimination with partial pivoting and row interchanges. The factorization has the form:
28
28
29
+
<!-- <equation class="equation" label="eq:lu_decomposition" align="center" raw="A = L U" alt="Equation for LU factorization."> -->
30
+
29
31
```math
30
32
A = L U
31
33
```
32
34
35
+
<!-- <div class="equation" align="center" data-raw-text="A = L U" data-equation="eq:lu_decomposition"></div> -->
36
+
37
+
<!-- </equation> -->
38
+
33
39
where L is a product of permutation and unit lower bidiagonal matrices and U is upper triangular with nonzeros in only the main diagonal and first two superdiagonals.
34
40
35
41
For a tridiagonal matrix A, its elements are stored in three arrays:
where the `l_i` values are stored in `dl`, the diagonal elements `u_{i,i}` are stored in `d`, and the superdiagonal elements `u_{i,i+1}` and `u_{i,i+2}` are stored in `du` and `du2` respectively.
0 commit comments