From 97ed4a5d9e3d0ba8d4a74f8418051187b8f3c775 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Wed, 6 Dec 2023 02:56:06 +0000 Subject: [PATCH] Auto-generated commit --- README.md | 9 +++++++++ base/README.md | 3 +++ 2 files changed, 12 insertions(+) diff --git a/README.md b/README.md index 600cf11a..4a28d3f1 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,10 @@ In addition, the namespace contains the following multidimensional array utility - [`ndsliceDimensionFrom( x, dim, start[, options] )`][@stdlib/ndarray/slice-dimension-from]: return a read-only shifted view of an input `ndarray` along a specified dimension. - [`ndsliceDimensionTo( x, dim, stop[, options] )`][@stdlib/ndarray/slice-dimension-to]: return a read-only truncated view of an input `ndarray` along a specified dimension. - [`ndsliceDimension( x, dim, slice[, options] )`][@stdlib/ndarray/slice-dimension]: return a read-only view of an input `ndarray` when sliced along a specified dimension. +- [`ndsliceFrom( x, ...start[, options] )`][@stdlib/ndarray/slice-from]: return a read-only shifted view of an input ndarray. +- [`ndsliceTo( x, ...stop[, options] )`][@stdlib/ndarray/slice-to]: return a read-only truncated view of an input ndarray. - [`ndslice( x, ...s[, options] )`][@stdlib/ndarray/slice]: return a read-only view of an input `ndarray`. +- [`ndarrayStride( x, dim )`][@stdlib/ndarray/stride]: return the stride along a specified dimension for a provided ndarray. - [`ndarrayStrides( x )`][@stdlib/ndarray/strides]: return the strides of a provided ndarray. - [`sub2ind( shape, ...subscripts[, options] )`][@stdlib/ndarray/sub2ind]: convert subscripts to a linear index. - [`ndarray2array( x )`][@stdlib/ndarray/to-array]: convert an ndarray to a generic array. @@ -308,8 +311,14 @@ Copyright © 2016-2023. The Stdlib [Authors][stdlib-authors]. [@stdlib/ndarray/slice-dimension]: https://github.com/stdlib-js/ndarray/tree/main/slice-dimension +[@stdlib/ndarray/slice-from]: https://github.com/stdlib-js/ndarray/tree/main/slice-from + +[@stdlib/ndarray/slice-to]: https://github.com/stdlib-js/ndarray/tree/main/slice-to + [@stdlib/ndarray/slice]: https://github.com/stdlib-js/ndarray/tree/main/slice +[@stdlib/ndarray/stride]: https://github.com/stdlib-js/ndarray/tree/main/stride + [@stdlib/ndarray/strides]: https://github.com/stdlib-js/ndarray/tree/main/strides [@stdlib/ndarray/sub2ind]: https://github.com/stdlib-js/ndarray/tree/main/sub2ind diff --git a/base/README.md b/base/README.md index eb8160e4..61e1aee1 100644 --- a/base/README.md +++ b/base/README.md @@ -112,6 +112,7 @@ var o = ns; - [`sliceFrom( x, start, strict, writable )`][@stdlib/ndarray/base/slice-from]: return a shifted view of an input ndarray. - [`sliceTo( x, stop, strict, writable )`][@stdlib/ndarray/base/slice-to]: return a truncated view of an input ndarray. - [`slice( x, slice, strict, writable )`][@stdlib/ndarray/base/slice]: return a view of an input ndarray. +- [`stride( x, dim )`][@stdlib/ndarray/base/stride]: return the stride along a specified dimension for a provided ndarray. - [`strides( x, copy )`][@stdlib/ndarray/base/strides]: return the strides of a provided ndarray. - [`strides2offset( shape, strides )`][@stdlib/ndarray/base/strides2offset]: determine the index offset which specifies the location of the first indexed value in a multidimensional array based on a stride array. - [`strides2order( strides )`][@stdlib/ndarray/base/strides2order]: determine the order of a multidimensional array based on a provided stride array. @@ -321,6 +322,8 @@ console.log( objectKeys( ns ) ); [@stdlib/ndarray/base/slice]: https://github.com/stdlib-js/ndarray/tree/main/base/slice +[@stdlib/ndarray/base/stride]: https://github.com/stdlib-js/ndarray/tree/main/base/stride + [@stdlib/ndarray/base/strides]: https://github.com/stdlib-js/ndarray/tree/main/base/strides [@stdlib/ndarray/base/strides2offset]: https://github.com/stdlib-js/ndarray/tree/main/base/strides2offset