Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/blas/ext/copy-within/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/blas/ext/copy-within/docs/repl.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Computes the minimum value of a one-dimensional double-precision floating-point
#include <stdint.h>

// 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 };
Expand Down