From e139d03a238e1a6721aa076562a638c7fc30f922 Mon Sep 17 00:00:00 2001 From: stdlib-bot Date: Fri, 24 Nov 2023 03:28:16 +0000 Subject: [PATCH] Auto-generated commit --- .editorconfig | 5 ----- base/README.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/.editorconfig b/.editorconfig index 13e9c391..60d743ff 100644 --- a/.editorconfig +++ b/.editorconfig @@ -148,11 +148,6 @@ indent_size = 2 indent_style = space indent_size = 2 -# Set properties for `tslint.json` files: -[tslint.json] -indent_style = space -indent_size = 2 - # Set properties for `tsconfig.json` files: [tsconfig.json] indent_style = space diff --git a/base/README.md b/base/README.md index 603f335c..5380bb86 100644 --- a/base/README.md +++ b/base/README.md @@ -95,11 +95,16 @@ The namespace exports the following: - [`flatten4d( x, shape, colexicographic )`][@stdlib/array/base/flatten4d]: flatten a four-dimensional nested array. - [`flatten5dBy( x, shape, colexicographic, clbk[, thisArg] )`][@stdlib/array/base/flatten5d-by]: flatten a five-dimensional nested array according to a callback function. - [`flatten5d( x, shape, colexicographic )`][@stdlib/array/base/flatten5d]: flatten a five-dimensional nested array. +- [`fliplr2d( x )`][@stdlib/array/base/fliplr2d]: reverse the order of elements along the last dimension of a two-dimensional nested input array. +- [`flipud2d( x )`][@stdlib/array/base/flipud2d]: reverse the order of elements along the first dimension of a two-dimensional nested input array. +- [`strided2array( N, x, stride, offset )`][@stdlib/array/base/from-strided]: convert a strided array to a non-strided generic array. - [`getter( dtype )`][@stdlib/array/base/getter]: return an accessor function for retrieving an element from an indexed array-like object. - [`incrspace( start, stop, increment )`][@stdlib/array/base/incrspace]: generate a linearly spaced numeric array according to a provided increment. - [`last( x )`][@stdlib/array/base/last]: return the last element of an array-like object. - [`linspace( start, stop, length )`][@stdlib/array/base/linspace]: generate a linearly spaced numeric array. - [`logspace( a, b, length )`][@stdlib/array/base/logspace]: generate a logarithmically spaced numeric array. +- [`map2d( x, shape, fcn[, thisArg] )`][@stdlib/array/base/map2d]: apply a function to elements in a two-dimensional nested input array and assign results to elements in a new two-dimensional nested output array. +- [`map3d( x, shape, fcn[, thisArg] )`][@stdlib/array/base/map3d]: apply a function to elements in a three-dimensional nested input array and assign results to elements in a new three-dimensional nested output array. - [`mskbinary2d( arrays, shape, fcn )`][@stdlib/array/base/mskbinary2d]: apply a binary callback to elements in two two-dimensional nested input arrays according to elements in a two-dimensional nested mask array and assign results to elements in a two-dimensional nested output array. - [`mskunary2d( arrays, shape, fcn )`][@stdlib/array/base/mskunary2d]: apply a unary callback to elements in a two-dimensional nested input array according to elements in a two-dimensional nested mask array and assign results to elements in a two-dimensional nested output array. - [`mskunary3d( arrays, shape, fcn )`][@stdlib/array/base/mskunary3d]: apply a unary callback to elements in a three-dimensional nested input array according to elements in a three-dimensional nested mask array and assign results to elements in a three-dimensional nested output array. @@ -112,12 +117,17 @@ The namespace exports the following: - [`ones5d( shape )`][@stdlib/array/base/ones5d]: create a five-dimensional nested array filled with ones. - [`onesnd( shape )`][@stdlib/array/base/onesnd]: create an n-dimensional nested array filled with ones. - [`quaternary2d( arrays, shape, fcn )`][@stdlib/array/base/quaternary2d]: apply a quaternary callback to elements in four two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array. +- [`quaternary3d( arrays, shape, fcn )`][@stdlib/array/base/quaternary3d]: apply a quaternary callback to elements in four three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array. +- [`quaternary4d( arrays, shape, fcn )`][@stdlib/array/base/quaternary4d]: apply a quaternary callback to elements in four four-dimensional nested input arrays and assign results to elements in a four-dimensional nested output array. +- [`quaternary5d( arrays, shape, fcn )`][@stdlib/array/base/quaternary5d]: apply a quaternary callback to elements in four five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array. - [`quinary2d( arrays, shape, fcn )`][@stdlib/array/base/quinary2d]: apply a quinary callback to elements in five two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array. +- [`resolveGetter( x )`][@stdlib/array/base/resolve-getter]: return an accessor function for retrieving an element from an array-like object. - [`setter( dtype )`][@stdlib/array/base/setter]: return an accessor function for setting an element in an indexed array-like object. - [`strided2array2d( x, shape, strides, offset )`][@stdlib/array/base/strided2array2d]: convert a strided array to a two-dimensional nested array. - [`strided2array3d( x, shape, strides, offset )`][@stdlib/array/base/strided2array3d]: convert a strided array to a three-dimensional nested array. - [`strided2array4d( x, shape, strides, offset )`][@stdlib/array/base/strided2array4d]: convert a strided array to a four-dimensional nested array. - [`strided2array5d( x, shape, strides, offset )`][@stdlib/array/base/strided2array5d]: convert a strided array to a five-dimensional nested array. +- [`takeIndexed( x, indices )`][@stdlib/array/base/take-indexed]: take elements from an indexed array. - [`take( x, indices )`][@stdlib/array/base/take]: take elements from an array. - [`ternary2d( arrays, shape, fcn )`][@stdlib/array/base/ternary2d]: apply a ternary callback to elements in three two-dimensional nested input arrays and assign results to elements in a two-dimensional nested output array. - [`ternary3d( arrays, shape, fcn )`][@stdlib/array/base/ternary3d]: apply a ternary callback to elements in three three-dimensional nested input arrays and assign results to elements in a three-dimensional nested output array. @@ -280,6 +290,12 @@ console.log( objectKeys( ns ) ); [@stdlib/array/base/flatten5d]: https://github.com/stdlib-js/array/tree/main/base/flatten5d +[@stdlib/array/base/fliplr2d]: https://github.com/stdlib-js/array/tree/main/base/fliplr2d + +[@stdlib/array/base/flipud2d]: https://github.com/stdlib-js/array/tree/main/base/flipud2d + +[@stdlib/array/base/from-strided]: https://github.com/stdlib-js/array/tree/main/base/from-strided + [@stdlib/array/base/getter]: https://github.com/stdlib-js/array/tree/main/base/getter [@stdlib/array/base/incrspace]: https://github.com/stdlib-js/array/tree/main/base/incrspace @@ -290,6 +306,10 @@ console.log( objectKeys( ns ) ); [@stdlib/array/base/logspace]: https://github.com/stdlib-js/array/tree/main/base/logspace +[@stdlib/array/base/map2d]: https://github.com/stdlib-js/array/tree/main/base/map2d + +[@stdlib/array/base/map3d]: https://github.com/stdlib-js/array/tree/main/base/map3d + [@stdlib/array/base/mskbinary2d]: https://github.com/stdlib-js/array/tree/main/base/mskbinary2d [@stdlib/array/base/mskunary2d]: https://github.com/stdlib-js/array/tree/main/base/mskunary2d @@ -314,8 +334,16 @@ console.log( objectKeys( ns ) ); [@stdlib/array/base/quaternary2d]: https://github.com/stdlib-js/array/tree/main/base/quaternary2d +[@stdlib/array/base/quaternary3d]: https://github.com/stdlib-js/array/tree/main/base/quaternary3d + +[@stdlib/array/base/quaternary4d]: https://github.com/stdlib-js/array/tree/main/base/quaternary4d + +[@stdlib/array/base/quaternary5d]: https://github.com/stdlib-js/array/tree/main/base/quaternary5d + [@stdlib/array/base/quinary2d]: https://github.com/stdlib-js/array/tree/main/base/quinary2d +[@stdlib/array/base/resolve-getter]: https://github.com/stdlib-js/array/tree/main/base/resolve-getter + [@stdlib/array/base/setter]: https://github.com/stdlib-js/array/tree/main/base/setter [@stdlib/array/base/strided2array2d]: https://github.com/stdlib-js/array/tree/main/base/strided2array2d @@ -326,6 +354,8 @@ console.log( objectKeys( ns ) ); [@stdlib/array/base/strided2array5d]: https://github.com/stdlib-js/array/tree/main/base/strided2array5d +[@stdlib/array/base/take-indexed]: https://github.com/stdlib-js/array/tree/main/base/take-indexed + [@stdlib/array/base/take]: https://github.com/stdlib-js/array/tree/main/base/take [@stdlib/array/base/ternary2d]: https://github.com/stdlib-js/array/tree/main/base/ternary2d