From 47f36277b49cba8c51f78c160c6d0452566063f5 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Aug 2026 12:39:55 +0000 Subject: [PATCH 1/4] docs: fix return annotation in `blas/ext/base/ndarray/gdiff` --- .../@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js index a83618560cef..8b0f42f9b9f3 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js @@ -45,7 +45,7 @@ var strided = require( '@stdlib/blas/ext/base/gdiff' ).ndarray; * - a zero-dimensional ndarray specifying the number of times to recursively compute differences. * * @param {ArrayLikeObject} arrays - array-like object containing ndarrays -* @returns {Object} output ndarray +* @returns {ndarray} output ndarray * * @example * var vector = require( '@stdlib/ndarray/vector/ctor' ); From 499741b5a6173d3b67df06dd4980b9b1706547d9 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Aug 2026 12:40:01 +0000 Subject: [PATCH 2/4] docs: fix C usage example in `stats/base/ndarray/dnanmin` --- lib/node_modules/@stdlib/stats/base/ndarray/dnanmin/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/stats/base/ndarray/dnanmin/README.md b/lib/node_modules/@stdlib/stats/base/ndarray/dnanmin/README.md index c3eb6126c0f7..83969d9d4ae5 100644 --- a/lib/node_modules/@stdlib/stats/base/ndarray/dnanmin/README.md +++ b/lib/node_modules/@stdlib/stats/base/ndarray/dnanmin/README.md @@ -141,7 +141,7 @@ Computes the minimum value of a one-dimensional double-precision floating-point #include // Create an ndarray: -const double data[] = { 1.0, -2.0, NaN, 2.0 }; +const double data[] = { 1.0, -2.0, 0.0/0.0, 2.0 }; int64_t shape[] = { 4 }; int64_t strides[] = { STDLIB_NDARRAY_FLOAT64_BYTES_PER_ELEMENT }; int8_t submodes[] = { STDLIB_NDARRAY_INDEX_ERROR }; From dd7b8304d55a57d6c907e31ffa72249d5d4a309f Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 16 Aug 2026 12:40:01 +0000 Subject: [PATCH 3/4] docs: fix default source end index in `blas/ext/copy-within` --- lib/node_modules/@stdlib/blas/ext/copy-within/README.md | 2 +- lib/node_modules/@stdlib/blas/ext/copy-within/docs/repl.txt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/ext/copy-within/README.md b/lib/node_modules/@stdlib/blas/ext/copy-within/README.md index a02680e95a37..17fc4ee14bb9 100644 --- a/lib/node_modules/@stdlib/blas/ext/copy-within/README.md +++ b/lib/node_modules/@stdlib/blas/ext/copy-within/README.md @@ -54,7 +54,7 @@ The function has the following parameters: - **x**: input [ndarray][@stdlib/ndarray/ctor]. - **target**: target index. May be either an integer or an [ndarray][@stdlib/ndarray/ctor] having an integer index or "generic" [data type][@stdlib/ndarray/dtypes]. If provided an [ndarray][@stdlib/ndarray/ctor], the value must have a shape which is [broadcast-compatible][@stdlib/ndarray/base/broadcast-shapes] with the complement of the shape defined by `options.dim`. For example, given the input shape `[2, 3, 4]` and `options.dim=0`, an [ndarray][@stdlib/ndarray/ctor] target index must have a shape which is [broadcast-compatible][@stdlib/ndarray/base/broadcast-shapes] with the shape `[3, 4]`. - **start**: source start index (inclusive). May be either an integer or an [ndarray][@stdlib/ndarray/ctor] having an integer index or "generic" [data type][@stdlib/ndarray/dtypes] and following the same broadcasting semantics as the `target` argument. -- **end**: source end index (exclusive) (_optional_). May be either an integer or an [ndarray][@stdlib/ndarray/ctor] having an integer index or "generic" [data type][@stdlib/ndarray/dtypes] and following the same broadcasting semantics as the `target` argument. By default, the source end index is `N + 1`, where `N` is the number of elements along the dimension specified by `options.dim`. +- **end**: source end index (exclusive) (_optional_). May be either an integer or an [ndarray][@stdlib/ndarray/ctor] having an integer index or "generic" [data type][@stdlib/ndarray/dtypes] and following the same broadcasting semantics as the `target` argument. By default, the source end index is `N`, where `N` is the number of elements along the dimension specified by `options.dim`. - **options**: function options (_optional_). The function accepts the following options: diff --git a/lib/node_modules/@stdlib/blas/ext/copy-within/docs/repl.txt b/lib/node_modules/@stdlib/blas/ext/copy-within/docs/repl.txt index f53736859b2e..39abb994612f 100644 --- a/lib/node_modules/@stdlib/blas/ext/copy-within/docs/repl.txt +++ b/lib/node_modules/@stdlib/blas/ext/copy-within/docs/repl.txt @@ -31,8 +31,8 @@ end: ndarray|integer (optional) Source end index (exclusive). May be either an integer or an ndarray having an integer index or "generic" data type and following the same - broadcasting semantics as the `target` argument. Default: `N + 1` where - `N` is the number of elements along the operation dimension. + broadcasting semantics as the `target` argument. Default: `N` where `N` + is the number of elements along the operation dimension. options: Object (optional) Function options. From a0416b90e96a67e277f91965d3586053a3e01829 Mon Sep 17 00:00:00 2001 From: Athan Date: Sun, 16 Aug 2026 15:48:48 -0700 Subject: [PATCH 4/4] Discard changes to lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js --- .../@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js index 8b0f42f9b9f3..a83618560cef 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gdiff/lib/main.js @@ -45,7 +45,7 @@ var strided = require( '@stdlib/blas/ext/base/gdiff' ).ndarray; * - a zero-dimensional ndarray specifying the number of times to recursively compute differences. * * @param {ArrayLikeObject} arrays - array-like object containing ndarrays -* @returns {ndarray} output ndarray +* @returns {Object} output ndarray * * @example * var vector = require( '@stdlib/ndarray/vector/ctor' );