diff --git a/lib/node_modules/@stdlib/array/base/README.md b/lib/node_modules/@stdlib/array/base/README.md index 6fef8af80f65..f4fb88973be4 100644 --- a/lib/node_modules/@stdlib/array/base/README.md +++ b/lib/node_modules/@stdlib/array/base/README.md @@ -60,6 +60,7 @@ The namespace exports the following: - [`at4d( x, i0, i1, i2, i3 )`][@stdlib/array/base/at4d]: return an element from a four-dimensional nested array. - [`at5d( x, i0, i1, i2, i3, i4 )`][@stdlib/array/base/at5d]: return an element from a five-dimensional nested array. - [`atnd( x, i0[, ...indices] )`][@stdlib/array/base/atnd]: return an element from an n-dimensional nested array. +- [`banded`][@stdlib/array/base/banded]: banded array utilities. - [`bifurcateEntriesBy( x, predicate[, thisArg] )`][@stdlib/array/base/bifurcate-entries-by]: split element entries into two groups according to a predicate function. - [`bifurcateEntries( x, filter )`][@stdlib/array/base/bifurcate-entries]: split array element entries into two groups. - [`bifurcateIndicesBy( x, predicate[, thisArg] )`][@stdlib/array/base/bifurcate-indices-by]: split element indices into two groups according to a predicate function. @@ -97,6 +98,7 @@ The namespace exports the following: - [`copy( x )`][@stdlib/array/base/copy]: copy the elements of an array-like object to a new "generic" array. - [`countFalsy( x )`][@stdlib/array/base/count-falsy]: count the number of falsy elements in an array. - [`countIf( x, predicate[, thisArg] )`][@stdlib/array/base/count-if]: count the number of elements in an array which pass a test implemented by a predicate function. +- [`countIfs( x0, predicate0[, x1, predicate1[, x2, predicate2[, ...args]]] )`][@stdlib/array/base/count-ifs]: perform element-wise evaluation of one or more input arrays according to provided predicate functions and count the number of elements for which all predicates respectively return `true`. - [`countSameValueZero( x, value )`][@stdlib/array/base/count-same-value-zero]: count the number of elements in an array that are equal to a specified value. - [`countSameValue( x, value )`][@stdlib/array/base/count-same-value]: count the number of elements in an array that are equal to a specified value. - [`countTruthy( x )`][@stdlib/array/base/count-truthy]: count the number of truthy elements in an array. @@ -160,6 +162,7 @@ The namespace exports the following: - [`lastIndexOf( x, searchElement, fromIndex )`][@stdlib/array/base/last-index-of]: return the index of the last element which equals a provided search element. - [`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. +- [`linspace2d( start, stop, shape, colexicographic )`][@stdlib/array/base/linspace2d]: generate a linearly spaced two-dimensional nested 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. @@ -205,6 +208,7 @@ The namespace exports the following: - [`quinary5d( arrays, shape, fcn )`][@stdlib/array/base/quinary5d]: apply a quinary callback to elements in five five-dimensional nested input arrays and assign results to elements in a five-dimensional nested output array. - [`reject( x, predicate[, thisArg] )`][@stdlib/array/base/reject]: return a shallow copy of an array containing only those elements which fail a test implemented by a predicate function. - [`removeAt( x, index )`][@stdlib/array/base/remove-at]: remove an element from an array. +- [`reshape( x, fromShape, toShape, colexicographic )`][@stdlib/array/base/reshape]: reshape a nested array into another nested array having a desired shape. - [`resolveGetter( x )`][@stdlib/array/base/resolve-getter]: return an accessor function for retrieving an element from an array-like object. - [`resolveSetter( x )`][@stdlib/array/base/resolve-setter]: return an accessor function for setting an element in an array-like object. - [`reverse( x )`][@stdlib/array/base/reverse]: reverse an array in-place. @@ -216,6 +220,8 @@ The namespace exports the following: - [`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. +- [`symmetricBanded`][@stdlib/array/base/symmetric-banded]: symmetric banded array utilities. +- [`symmetric`][@stdlib/array/base/symmetric]: symmetric array utilities. - [`takeIndexed( x, indices )`][@stdlib/array/base/take-indexed]: take elements from an indexed array. - [`takeIndexed2( x, y, indices )`][@stdlib/array/base/take-indexed2]: take elements from two indexed arrays in a single pass. - [`take( x, indices, mode )`][@stdlib/array/base/take]: take elements from an array. @@ -336,6 +342,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu ); [@stdlib/array/base/atnd]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/atnd +[@stdlib/array/base/banded]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/banded + [@stdlib/array/base/bifurcate-entries-by]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/bifurcate-entries-by [@stdlib/array/base/bifurcate-entries]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/bifurcate-entries @@ -410,6 +418,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu ); [@stdlib/array/base/count-if]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/count-if +[@stdlib/array/base/count-ifs]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/count-ifs + [@stdlib/array/base/count-same-value-zero]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/count-same-value-zero [@stdlib/array/base/count-same-value]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/count-same-value @@ -536,6 +546,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu ); [@stdlib/array/base/linspace]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/linspace +[@stdlib/array/base/linspace2d]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/linspace2d + [@stdlib/array/base/logspace]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/logspace [@stdlib/array/base/map2d]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/map2d @@ -626,6 +638,8 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu ); [@stdlib/array/base/remove-at]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/remove-at +[@stdlib/array/base/reshape]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/reshape + [@stdlib/array/base/resolve-getter]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/resolve-getter [@stdlib/array/base/resolve-setter]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/resolve-setter @@ -648,6 +662,10 @@ var squared = ns.map2d( arr2d, [ 2, 3 ], randu ); [@stdlib/array/base/strided2array5d]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/strided2array5d +[@stdlib/array/base/symmetric-banded]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/symmetric-banded + +[@stdlib/array/base/symmetric]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/symmetric + [@stdlib/array/base/take-indexed]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/take-indexed [@stdlib/array/base/take-indexed2]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/array/base/take-indexed2 diff --git a/lib/node_modules/@stdlib/complex/float32/base/README.md b/lib/node_modules/@stdlib/complex/float32/base/README.md index 0530bf282491..44d19ee7e2c4 100644 --- a/lib/node_modules/@stdlib/complex/float32/base/README.md +++ b/lib/node_modules/@stdlib/complex/float32/base/README.md @@ -58,7 +58,10 @@ The namespace contains the following functions:
- [`add( z1, z2 )`][@stdlib/complex/float32/base/add]: add two single-precision complex floating-point numbers. +- [`identity( z )`][@stdlib/complex/float32/base/identity]: evaluate the identity function of a single-precision complex floating-point number. - [`mul( z1, z2 )`][@stdlib/complex/float32/base/mul]: multiply two single-precision complex floating-point numbers. +- [`neg( z )`][@stdlib/complex/float32/base/neg]: negate a single-precision complex floating-point number. +- [`sub( z1, z2 )`][@stdlib/complex/float32/base/sub]: subtract two single-precision complex floating-point numbers.
@@ -111,8 +114,14 @@ console.log( objectKeys( ns ) ); [@stdlib/complex/float32/base/add]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/add +[@stdlib/complex/float32/base/identity]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/identity + [@stdlib/complex/float32/base/mul]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/mul +[@stdlib/complex/float32/base/neg]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/neg + +[@stdlib/complex/float32/base/sub]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/sub + [@stdlib/complex/float32/base/assert]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/assert