From 4f0e98e532357e6b2d1a5726c4fd5fe254050017 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 19 May 2026 13:20:47 +0000 Subject: [PATCH 1/2] fix: correct typos in `blas/base` error messages and READMEs Propagates fixes from c606f03c3 ("fix: correct bugs and typos in `blas/base/cgemv`") to sibling packages exhibiting the same defects. Removes the ungrammatical article from the `strideX` validation error message ("must be a nonzero" -> "must be nonzero") in the `dsyr` and `ssyr` ndarray C implementations, and corrects transposed words in the ndarray interface description ("indexing alternative semantics" -> "alternative indexing semantics") in the `dgemv` and `sgemv` READMEs. --- lib/node_modules/@stdlib/blas/base/dgemv/README.md | 2 +- lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr_ndarray.c | 2 +- lib/node_modules/@stdlib/blas/base/sgemv/README.md | 2 +- lib/node_modules/@stdlib/blas/base/ssyr/src/ssyr_ndarray.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/dgemv/README.md b/lib/node_modules/@stdlib/blas/base/dgemv/README.md index 09eaace37ac6..1ef9e4c6a0dd 100644 --- a/lib/node_modules/@stdlib/blas/base/dgemv/README.md +++ b/lib/node_modules/@stdlib/blas/base/dgemv/README.md @@ -236,7 +236,7 @@ void c_dgemv( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans, const CBLA #### c_dgemv_ndarray( trans, M, N, alpha, \*A, sa1, sa2, oa, \*X, sx, ox, beta, \*Y, sy, oy ) -Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using indexing alternative semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix. +Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using alternative indexing semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix. ```c #include "stdlib/blas/base/shared.h" diff --git a/lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr_ndarray.c b/lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr_ndarray.c index 2739eefeeef1..e25a7e44151a 100644 --- a/lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr_ndarray.c +++ b/lib/node_modules/@stdlib/blas/base/dsyr/src/dsyr_ndarray.c @@ -60,7 +60,7 @@ void API_SUFFIX(c_dsyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const return; } if ( strideX == 0 ) { - c_xerbla( 5, "c_dsyr_ndarray", "Error: invalid argument. Fifth argument must be a nonzero. Value: `%d`.", strideX ); + c_xerbla( 5, "c_dsyr_ndarray", "Error: invalid argument. Fifth argument must be nonzero. Value: `%d`.", strideX ); return; } // Check whether we can avoid computation altogether... diff --git a/lib/node_modules/@stdlib/blas/base/sgemv/README.md b/lib/node_modules/@stdlib/blas/base/sgemv/README.md index 0ecbdc3cf975..58164b3cb488 100644 --- a/lib/node_modules/@stdlib/blas/base/sgemv/README.md +++ b/lib/node_modules/@stdlib/blas/base/sgemv/README.md @@ -236,7 +236,7 @@ void c_sgemv( const CBLAS_LAYOUT layout, const CBLAS_TRANSPOSE trans, const CBLA #### c_sgemv_ndarray( trans, M, N, alpha, \*A, sa1, sa2, oa, \*X, sx, ox, beta, \*Y, sy, oy ) -Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using indexing alternative semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix. +Performs one of the matrix-vector operations `y = α*A*x + β*y` or `y = α*A^T*x + β*y`, using alternative indexing semantics and where `α` and `β` are scalars, `x` and `y` are vectors, and `A` is an `M` by `N` matrix. ```c #include "stdlib/blas/base/shared.h" diff --git a/lib/node_modules/@stdlib/blas/base/ssyr/src/ssyr_ndarray.c b/lib/node_modules/@stdlib/blas/base/ssyr/src/ssyr_ndarray.c index 730c2d69d120..7fec6f4d2091 100644 --- a/lib/node_modules/@stdlib/blas/base/ssyr/src/ssyr_ndarray.c +++ b/lib/node_modules/@stdlib/blas/base/ssyr/src/ssyr_ndarray.c @@ -60,7 +60,7 @@ void API_SUFFIX(c_ssyr_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, const return; } if ( strideX == 0 ) { - c_xerbla( 5, "c_ssyr_ndarray", "Error: invalid argument. Fifth argument must be a nonzero. Value: `%d`.", strideX ); + c_xerbla( 5, "c_ssyr_ndarray", "Error: invalid argument. Fifth argument must be nonzero. Value: `%d`.", strideX ); return; } // Check whether we can avoid computation altogether... From 584538f2c2378d09e61ebe927812545aba3abd21 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 19 May 2026 13:21:38 +0000 Subject: [PATCH 2/2] docs: correct return-value note in `blas/ext/base/*index-of-row` Propagates the doc-note fix from 238446093 ("docs: propagate recent doc-note and grammar fixes to sibling packages") to the remaining `*index-of-row` and `*last-index-of-row` sibling packages. Each `## Notes` block stated the function returns `-1` when "unable to find a search vector"; the search vector is the caller-provided query, not the value being located. Aligns the phrasing with the analogous `*index-of-column` fix by replacing it with "unable to find a matching row" across the affected `lib/` implementations and TypeScript declaration files. --- .../blas/ext/base/cindex-of-row/docs/types/index.d.ts | 6 +++--- .../blas/ext/base/cindex-of-row/lib/cindex_of_row.js | 2 +- .../@stdlib/blas/ext/base/cindex-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/clast-index-of-row/docs/types/index.d.ts | 6 +++--- .../ext/base/clast-index-of-row/lib/clast_index_of_row.js | 2 +- .../@stdlib/blas/ext/base/clast-index-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/dindex-of-row/docs/types/index.d.ts | 6 +++--- .../blas/ext/base/dindex-of-row/lib/dindex_of_row.js | 2 +- .../@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/dlast-index-of-row/docs/types/index.d.ts | 6 +++--- .../ext/base/dlast-index-of-row/lib/dlast_index_of_row.js | 2 +- .../@stdlib/blas/ext/base/dlast-index-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/gindex-of-row/docs/types/index.d.ts | 6 +++--- .../@stdlib/blas/ext/base/gindex-of-row/lib/accessors.js | 2 +- .../@stdlib/blas/ext/base/gindex-of-row/lib/base.js | 2 +- .../@stdlib/blas/ext/base/gindex-of-row/lib/main.js | 2 +- .../@stdlib/blas/ext/base/gindex-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/glast-index-of-row/docs/types/index.d.ts | 6 +++--- .../blas/ext/base/glast-index-of-row/lib/accessors.js | 2 +- .../@stdlib/blas/ext/base/glast-index-of-row/lib/main.js | 2 +- .../@stdlib/blas/ext/base/glast-index-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/sindex-of-row/docs/types/index.d.ts | 6 +++--- .../@stdlib/blas/ext/base/sindex-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/sindex-of-row/lib/sindex_of_row.js | 2 +- .../blas/ext/base/slast-index-of-row/docs/types/index.d.ts | 6 +++--- .../@stdlib/blas/ext/base/slast-index-of-row/lib/ndarray.js | 2 +- .../ext/base/slast-index-of-row/lib/slast_index_of_row.js | 2 +- .../blas/ext/base/zindex-of-row/docs/types/index.d.ts | 6 +++--- .../@stdlib/blas/ext/base/zindex-of-row/lib/ndarray.js | 2 +- .../blas/ext/base/zindex-of-row/lib/zindex_of_row.js | 2 +- .../blas/ext/base/zlast-index-of-row/docs/types/index.d.ts | 6 +++--- .../@stdlib/blas/ext/base/zlast-index-of-row/lib/ndarray.js | 2 +- .../ext/base/zlast-index-of-row/lib/zlast_index_of_row.js | 2 +- 33 files changed, 53 insertions(+), 53 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/docs/types/index.d.ts index ba0797856f6b..6708680594ce 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/docs/types/index.d.ts @@ -32,7 +32,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -64,7 +64,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -100,7 +100,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/cindex_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/cindex_of_row.js index f4e54fccb47d..050b6059d03d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/cindex_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/cindex_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/ndarray.js index 5a9af0aedc26..e84982cdb957 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/cindex-of-row/lib/ndarray.js @@ -33,7 +33,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex64' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/docs/types/index.d.ts index 84a94529de6b..79b7c328e7f5 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/docs/types/index.d.ts @@ -32,7 +32,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -65,7 +65,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -102,7 +102,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/clast_index_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/clast_index_of_row.js index ba7fa4b29854..13ec4cbbd3ac 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/clast_index_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/clast_index_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/ndarray.js index 02a90ba757de..742472f9bf9a 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/clast-index-of-row/lib/ndarray.js @@ -33,7 +33,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex64' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/docs/types/index.d.ts index cd89559988f5..687ffad9cece 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/docs/types/index.d.ts @@ -31,7 +31,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -63,7 +63,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -99,7 +99,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/dindex_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/dindex_of_row.js index 13543d2c2258..3046f4acce61 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/dindex_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/dindex_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js index 247437d75e0b..0f3c0d0c2ec3 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/dindex-of-row/lib/ndarray.js @@ -32,7 +32,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/docs/types/index.d.ts index 264c170160ce..65cc4392265a 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/docs/types/index.d.ts @@ -31,7 +31,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -63,7 +63,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -99,7 +99,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/dlast_index_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/dlast_index_of_row.js index f9c3d2e5bc25..a77bbde25303 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/dlast_index_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/dlast_index_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/ndarray.js index 22574ba710e0..12509866e609 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/dlast-index-of-row/lib/ndarray.js @@ -32,7 +32,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/docs/types/index.d.ts index f16488637705..7796506cb9bf 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/docs/types/index.d.ts @@ -37,7 +37,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @param order - storage layout * @param M - number of rows in `A` @@ -62,7 +62,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @param M - number of rows in `A` * @param N - number of columns in `A` @@ -89,7 +89,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @param order - storage layout * @param M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/accessors.js b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/accessors.js index 15ed5749c375..2e8a7c7b63fb 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/accessors.js +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/accessors.js @@ -31,7 +31,7 @@ var ones = require( '@stdlib/array/base/ones' ); * * ## Notes * -* - If the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @private * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/base.js b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/base.js index f1973f9a9a25..d864eebc50f1 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/base.js +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/base.js @@ -33,7 +33,7 @@ var accessors = require( './accessors.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @private * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/main.js index aa58755e816f..1e911fd1fda0 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/main.js +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/main.js @@ -36,7 +36,7 @@ var base = require( './base.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @param {string} order - storage layout * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/ndarray.js index f19116a652e6..368d80421416 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/gindex-of-row/lib/ndarray.js @@ -30,7 +30,7 @@ var base = require( './base.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * * @param {PositiveInteger} M - number of rows in `A` * @param {PositiveInteger} N - number of columns in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/docs/types/index.d.ts index 0eabf23cdd33..d8788caec52c 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/docs/types/index.d.ts @@ -42,7 +42,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -71,7 +71,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -104,7 +104,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/accessors.js b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/accessors.js index 429a8b63b80c..0937093899d3 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/accessors.js +++ b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/accessors.js @@ -32,7 +32,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); * * ## Notes * -* - If the function is unable to find a search vector, the function returns `-1` (i.e., an invalid index). +* - If the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @private diff --git a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/main.js index f4b256723b84..dfcf36191a86 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/main.js +++ b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/main.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/ndarray.js index 6c224b9efa09..c88b3d7564a0 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/glast-index-of-row/lib/ndarray.js @@ -34,7 +34,7 @@ var accessors = require( './accessors.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/docs/types/index.d.ts index f71a9348a2c7..3bc01ed37d05 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/docs/types/index.d.ts @@ -31,7 +31,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -63,7 +63,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -99,7 +99,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/ndarray.js index 77592290b3a8..a02d240ba84d 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/ndarray.js @@ -32,7 +32,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/sindex_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/sindex_of_row.js index 64cfecae81e8..e124f41cddd4 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/sindex_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/sindex-of-row/lib/sindex_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/docs/types/index.d.ts index 72ca94b76950..754323cc2934 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/docs/types/index.d.ts @@ -31,7 +31,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -63,7 +63,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -99,7 +99,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/ndarray.js index e65a60cac240..8f0a3bd74cf2 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/ndarray.js @@ -32,7 +32,7 @@ var isRowMajor = require( '@stdlib/ndarray/base/assert/is-row-major' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/slast_index_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/slast_index_of_row.js index 9dd36f8c4d37..3fc44c6be203 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/slast_index_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/slast-index-of-row/lib/slast_index_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/docs/types/index.d.ts index fb5e15155a68..7ac9004d2e3b 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/docs/types/index.d.ts @@ -32,7 +32,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -64,7 +64,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -100,7 +100,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/ndarray.js index ad8e5801920b..34b1c8c1183e 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/ndarray.js @@ -33,7 +33,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex128' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/zindex_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/zindex_of_row.js index a4099b8d8db9..8cc10b7462b1 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/zindex_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zindex-of-row/lib/zindex_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/docs/types/index.d.ts index d83f506b1e12..aa673f8249d3 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/docs/types/index.d.ts @@ -32,7 +32,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout @@ -65,7 +65,7 @@ interface Routine { * * ## Notes * - * - 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). + * - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param M - number of rows in `A` @@ -102,7 +102,7 @@ interface Routine { * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param order - storage layout diff --git a/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/ndarray.js b/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/ndarray.js index 0243aaa5ba11..d2c4a5b56875 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/ndarray.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/ndarray.js @@ -33,7 +33,7 @@ var reinterpret = require( '@stdlib/strided/base/reinterpret-complex128' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {PositiveInteger} M - number of rows in `A` diff --git a/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/zlast_index_of_row.js b/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/zlast_index_of_row.js index 729637f18503..d0e0b689e1c2 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/zlast_index_of_row.js +++ b/lib/node_modules/@stdlib/blas/ext/base/zlast-index-of-row/lib/zlast_index_of_row.js @@ -36,7 +36,7 @@ var ndarray = require( './ndarray.js' ); * * ## Notes * -* - 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). +* - If the function is provided an empty matrix or if the function is unable to find a matching row, the function returns `-1` (i.e., an invalid index). * - 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. * * @param {string} order - storage layout