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/blas/base/dsbmv/README.md
+10-7Lines changed: 10 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# dsbmv
22
22
23
-
> Perform the matrix-vector operation `y = alpha*A*x + beta*y` where `alpha` and `beta` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric band matrix, with `K` super-diagonals.
23
+
> Perform the matrix-vector operation `y = alpha*A*x + beta*y`.
24
24
25
25
<sectionclass="usage">
26
26
@@ -55,10 +55,10 @@ The function has the following parameters:
55
55
-**A**: packed banded form of a symmetric matrix `A` stored in linear memory as a [`Float64Array`][mdn-float64array].
56
56
-**LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
The stride parameters determine how elements in the input arrays are accessed at runtime. For example, to iterate over the elements of `y` in reverse order,
0 commit comments