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
#### dgttrf.ndarray( N, D, strideD, offsetD, E, strideE, offsetE )
94
+
<!-- lint disable maximum-heading-length -->
95
+
96
+
#### dgttrf.ndarray( N, DL, sdl, odl, D, sd, od, DU, sdu, odu, DU2, sdu2, odu2, IPIV, si, oi )
85
97
86
98
Computes an `LU` factorization of a real tri diagonal matrix `A` using elimination with partial pivoting and row interchanges and alternative indexing semantics.
The function has the following additional parameters:
108
120
109
-
-**strideD**: stride length for `D`.
110
-
-**offsetD**: starting index for `D`.
111
-
-**strideE**: stride length for `E`.
112
-
-**offsetE**: starting index for `E`.
121
+
-**sdl**: stride length for `DL`.
122
+
-**odl**: starting index for `DL`.
123
+
-**sd**: stride length for `D`.
124
+
-**od**: starting index for `D`.
125
+
-**sdu**: stride length for `DU`.
126
+
-**odu**: starting index for `DU`.
127
+
-**sdu2**: stride length for `DU2`.
128
+
-**odu2**: starting index for `DU2`.
129
+
-**si**: stride length for `IPIV`.
130
+
-**oi**: starting index for `IPIV`.
113
131
114
132
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example,
-`<0`: the k-th argument had an illegal value, where `-k` equals the status code value.
143
-
-`>0`: `U( k, k )` is exactly zero the factorization has been completed, but the factor `U` is exactly singular, and division
144
-
by zero will occur if it is used to solve a system of equations, where `k` equals the status code value.
168
+
-`>0`: `U( k, k )` is exactly zero the factorization has been completed, but the factor `U` is exactly singular, and division by zero will occur if it is used to solve a system of equations, where `k` equals the status code value.
145
169
146
170
-`dgttrf()` corresponds to the [LAPACK][LAPACK] routine [`dgttrf`][lapack-dgttrf].
0 commit comments