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/ext/base/dindex-of-row/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,10 +72,10 @@ The function has the following parameters:
72
72
-**LDA**: stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`).
73
73
-**x**: search vector stored as a [`Float64Array`][mdn-float64array].
74
74
-**strideX**: stride length of `x`.
75
-
-**workspace**: workspace array stored as a [`Uint8Array`][mdn-uint8array] for tracking row match candidates.
75
+
-**workspace**: workspace array stored as a [`Uint8Array`][mdn-uint8array] for tracking row match candidates. This parameter is ignored if the function is provided an input matrix stored in row-major order.
76
76
-**strideW**: stride length of `workspace`.
77
77
78
-
If the matrix is stored in a row-major order, the `workspace`is not accessed.
78
+
When an input matrix is stored in row-major order, the workspace parameter is ignored, and, thus, one may provide an empty workspace array.
@@ -176,11 +176,11 @@ The function has the following parameters:
176
176
-**x**: search vector stored as a [`Float64Array`][mdn-float64array].
177
177
-**strideX**: stride length of `x`.
178
178
-**offsetX**: starting index for `x`.
179
-
-**workspace**: workspace array stored as a [`Uint8Array`][mdn-uint8array] for tracking row match candidates.
179
+
-**workspace**: workspace array stored as a [`Uint8Array`][mdn-uint8array] for tracking row match candidates. This parameter is ignored if the function is provided an input matrix stored in row-major order.
180
180
-**strideW**: stride length of `workspace`.
181
181
-**offsetW**: starting index for `workspace`.
182
182
183
-
If the matrix is stored in a row-major order, the `workspace`is not accessed.
183
+
When an input matrix is stored in row-major order, the workspace parameter is ignored, and, thus, one may provide an empty workspace array.
0 commit comments