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
In order to more readily avoid underflow/overflow, this routine chooses to represent `α` as the product of
38
+
39
+
<!-- <equation class="equation" label="eq:alpha_representation" align="center" raw="\alpha = \beta \cdot \frac{1}{\gamma}" alt="Equation for alpha representation as beta over gamma."> -->
40
+
41
+
```math
42
+
\alpha = \beta \cdot \frac{1}{\gamma}
43
+
```
44
+
45
+
<!-- </equation> -->
46
+
47
+
</section>
48
+
49
+
<!-- /.intro -->
50
+
25
51
<sectionclass="usage">
26
52
27
53
## Usage
@@ -56,8 +82,6 @@ The function has the following parameters:
56
82
-**A**: input [`Float64Array`][mdn-float64array].
57
83
-**LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
58
84
59
-
If `type` is `'banded'`, `'symmetric-banded-lower'`, or `'symmetric-banded-upper'`, the matrix should be stored in the [band storage][lapack-band-storage] format.
60
-
61
85
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
@@ -102,7 +126,6 @@ The function has the following parameters:
102
126
-**strideA2**: stride of the second dimension of `A`.
103
127
-**offsetA**: starting index for `A`.
104
128
105
-
If `type` is `'banded'`, `'symmetric-banded-lower'`, or `'symmetric-banded-upper'`, the matrix should be stored in the [band storage][lapack-band-storage] format.
106
129
107
130
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,
-`dlascl()` corresponds to the [LAPACK][lapack] routine [`dlascl`][lapack-dlascl].
127
-
- If `type` is `banded`, `symmetric-banded-lower` or `symmetric-banded-upper` the matrix should be stored in the [`Band storage`][lapack-band-storage] format.
150
+
- If `type` is `'banded'`, `'symmetric-banded-lower'`, or `'symmetric-banded-upper'`, the matrix should be stored in the [band storage][lapack-band-storage] format.
0 commit comments