Skip to content

Commit a165f27

Browse files
authored
docs: update copy
Signed-off-by: Athan <[email protected]>
1 parent 5e9bfc5 commit a165f27

File tree

1 file changed

+4
-2
lines changed
  • lib/node_modules/@stdlib/lapack/base

1 file changed

+4
-2
lines changed

lib/node_modules/@stdlib/lapack/base/README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ AB = \left[
137137

138138
<!-- </equation> -->
139139

140-
The matrix is 3×5 as `KD+1 = 2+1 = 3`. Similarly, given the following matrix `A`,
140+
`AB` is a 3×5 matrix is 3×5 as `KD+1 = 2+1 = 3`. Similarly, given the following matrix `A`,
141141

142142
<!-- <equation class="equation" label="eq:symmetric_lower_a" align="center" raw="A = \left[\begin{array}{rrrrr}a_{11} & {a_{21}} & {a_{31}} & 0 & 0 \\a_{21} & a_{22} & {a_{32}} & {a_{42}} & 0 \\a_{31} & a_{32} & a_{33} & {a_{43}} & {a_{53}} \\0 & a_{42} & a_{43} & a_{44} & {a_{54}} \\0 & 0 & a_{53} & a_{54} & a_{55}\end{array}\right]" alt="Representation of symmetric band matrix A (lower triangle)."> -->
143143

@@ -155,7 +155,7 @@ A = \left[
155155

156156
<!-- </equation> -->
157157

158-
the band storage matrix `AB` (3×5, since KD+1 = 2+1 = 3) when `UPLO = 'L'` (i.e., lower triangle) is
158+
the band storage matrix `AB` when `UPLO = 'L'` (i.e., lower triangle) is
159159

160160
<!-- <equation class="equation" label="eq:symmetric_lower_ab" align="center" raw="AB = \left[\begin{array}{rrrrr}a_{11} & a_{22} & a_{33} & a_{44} & a_{55} \\a_{21} & a_{32} & a_{43} & a_{54} & * \\a_{31} & a_{42} & a_{53} & * & *\end{array}\right]" alt="Band storage representation of symmetric matrix A (lower triangle)."> -->
161161

@@ -169,6 +169,8 @@ AB = \left[
169169
\right]
170170
```
171171

172+
`AB` is a 3×5 matrix as `KD+1 = 2+1 = 3`.
173+
172174
<!-- </equation> -->
173175

174176
</section>

0 commit comments

Comments
 (0)