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/cgemv/lib/ndarray.js
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,9 @@ var isMatrixTranspose = require( '@stdlib/blas/base/assert/is-transpose-operatio
24
24
varformat=require('@stdlib/string/format');
25
25
varbase=require('./base.js');
26
26
27
+
28
+
// MAIN //
29
+
27
30
/**
28
31
* Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y` or `y = α*A^H*x + β*y`, where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/ddiff/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ The function has the following parameters:
68
68
-**workspace**: workspace [`Float64Array`][@stdlib/array/float64]. Must have `N + N1 + N2 - 1` elements.
69
69
-**strideW**: stride length for `workspace`.
70
70
71
-
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to differences of every other element:
71
+
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute differences of every other element:
0 commit comments