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/docs/types/index.d.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ interface Routine {
32
32
* ## Notes
33
33
*
34
34
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
35
-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
35
+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
36
36
*
37
37
* @param order - storage layout
38
38
* @param M - number of rows in `A`
@@ -64,7 +64,7 @@ interface Routine {
64
64
* ## Notes
65
65
*
66
66
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
67
-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
67
+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/dindex_of_row.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ var ndarray = require( './ndarray.js' );
37
37
* ## Notes
38
38
*
39
39
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
40
-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
40
+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
41
41
*
42
42
* @param {string} order - storage layout
43
43
* @param {PositiveInteger} M - number of rows in `A`
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' );
33
33
* ## Notes
34
34
*
35
35
* - If the function is provided an empty matrix or if the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index).
36
-
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace is not accessed.
36
+
* - The `workspace` array is only applicable when an input matrix is stored in column-major order. When the matrix is stored in row-major order, the workspace array is ignored.
37
37
*
38
38
* @param {PositiveInteger} M - number of rows in `A`
39
39
* @param {PositiveInteger} N - number of columns in `A`
0 commit comments