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/dlanv2/README.md
+34-36Lines changed: 34 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ T = \begin{bmatrix} AA & BB \\
59
59
60
60
<!-- </equation> -->
61
61
62
-
2.`T` is a 2x2 block with complex conjugate eigenvalues:
62
+
2.`T` is a 2-by-2 block with complex conjugate eigenvalues:
63
63
64
64
<!-- <equation class="equation" label="eq:complex_schur" align="center" raw="T = \begin{bmatrix} AA & BB \\ CC & AA \end{bmatrix}" alt="Real Schur form with complex eigenvalues."> -->
@@ -223,18 +223,18 @@ The function has the following parameters:
223
223
-**oc**: starting index for `C`.
224
224
-**D**: single-element [`Float64Array`][mdn-float64array] containing the element `A(2,2)`.
225
225
-**od**: starting index for `D`.
226
-
-**RT1R**: single-element output [`Float64Array`][mdn-float64array] to store the real value of the first eigenvector.
227
-
-**or1**: starting index for `RT1R`.
228
-
-**RT1I**: single-element output [`Float64Array`][mdn-float64array] to store the imaginary value of the first eigenvector.
229
-
-**oi1**: starting index for `RT1I`.
230
-
-**RT2R**: single-element output [`Float64Array`][mdn-float64array] to store the real value of the second eigenvector.
231
-
-**or2**: starting index for `RT2R`.
232
-
-**RT2I**: single-element output [`Float64Array`][mdn-float64array] to store the imaginary value of the second eigenvector.
233
-
-**oi2**: starting index for `RT2I`.
234
-
-**CS**: output [`Float64Array`][mdn-float64array] to store the cosine of the rotation.
235
-
-**ocs**: starting index for `CS`.
236
-
-**SN**: output [`Float64Array`][mdn-float64array] to store the sine of the rotation.
237
-
-**osn**: starting index for `SN`.
226
+
-**rt1r**: single-element output [`Float64Array`][mdn-float64array] to store the real value of the first eigenvector.
227
+
-**or1**: starting index for `rt1r`.
228
+
-**rt1i**: single-element output [`Float64Array`][mdn-float64array] to store the imaginary value of the first eigenvector.
229
+
-**oi1**: starting index for `rt1i`.
230
+
-**rt2r**: single-element output [`Float64Array`][mdn-float64array] to store the real value of the second eigenvector.
231
+
-**or2**: starting index for `rt2r`.
232
+
-**rt2i**: single-element output [`Float64Array`][mdn-float64array] to store the imaginary value of the second eigenvector.
233
+
-**oi2**: starting index for `rt2i`.
234
+
-**cs**: output [`Float64Array`][mdn-float64array] to store the cosine of the rotation.
235
+
-**ocs**: starting index for `cs`.
236
+
-**sn**: output [`Float64Array`][mdn-float64array] to store the sine of the rotation.
237
+
-**osn**: starting index for `sn`.
238
238
239
239
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 commit comments