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. 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 };