@stdlib/ndarray-base 0.2.1 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/NOTICE CHANGED
@@ -1 +1 @@
1
- Copyright (c) 2016-2024 The Stdlib Authors.
1
+ Copyright (c) 2016-2026 The Stdlib Authors.
package/README.md CHANGED
@@ -66,72 +66,123 @@ var o = ns;
66
66
 
67
67
  <div class="namespace-toc">
68
68
 
69
+ - <span class="signature">[`anyBy( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/any-by]</span><span class="delimiter">: </span><span class="description">test whether at least one element in an ndarray passes a test implemented by a predicate function.</span>
70
+ - <span class="signature">[`any( arrays )`][@stdlib/ndarray/base/any]</span><span class="delimiter">: </span><span class="description">test whether at least one element in an ndarray is truthy.</span>
69
71
  - <span class="signature">[`assign( arrays )`][@stdlib/ndarray/base/assign]</span><span class="delimiter">: </span><span class="description">assign elements in an input ndarray to elements in an output ndarray.</span>
72
+ - <span class="signature">[`binaryInputCastingDataType( idtype1, idtype2, odtype, policy )`][@stdlib/ndarray/base/binary-input-casting-dtype]</span><span class="delimiter">: </span><span class="description">resolve the casting data type for an input ndarray provided to a binary function.</span>
70
73
  - <span class="signature">[`binaryLoopOrder( shape, stridesX, stridesY, stridesZ )`][@stdlib/ndarray/base/binary-loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
74
+ - <span class="signature">[`binaryOutputDataType( xdtype, ydtype, policy )`][@stdlib/ndarray/base/binary-output-dtype]</span><span class="delimiter">: </span><span class="description">resolve the output ndarray data type for a binary function.</span>
75
+ - <span class="signature">[`binaryReduceStrided1dDispatchFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory]</span><span class="delimiter">: </span><span class="description">create a function for performing reduction on two input ndarrays.</span>
76
+ - <span class="signature">[`binaryReduceStrided1dDispatch( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/binary-reduce-strided1d-dispatch]</span><span class="delimiter">: </span><span class="description">constructor for performing a reduction on two input ndarrays.</span>
77
+ - <span class="signature">[`binaryReduceStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/binary-reduce-strided1d]</span><span class="delimiter">: </span><span class="description">perform a reduction over a list of specified dimensions in two input ndarrays via a one-dimensional strided array binary reduction function and assign results to a provided output ndarray.</span>
71
78
  - <span class="signature">[`binaryBlockSize( dtypeX, dtypeY, dtypeZ )`][@stdlib/ndarray/base/binary-tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
79
+ - <span class="signature">[`binary( arrays, fcn )`][@stdlib/ndarray/base/binary]</span><span class="delimiter">: </span><span class="description">apply a binary callback to elements in input ndarrays and assign results to elements in an output ndarray.</span>
72
80
  - <span class="signature">[`bind2vind( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/bind2vind]</span><span class="delimiter">: </span><span class="description">convert a linear index in an underlying data buffer to a linear index in an array view.</span>
81
+ - <span class="signature">[`broadcastArrayExceptDimensions( arr, shape, dims )`][@stdlib/ndarray/base/broadcast-array-except-dimensions]</span><span class="delimiter">: </span><span class="description">broadcast an input ndarray to a target shape while keeping a list of specified dimensions unchanged.</span>
73
82
  - <span class="signature">[`broadcastArray( arr, shape )`][@stdlib/ndarray/base/broadcast-array]</span><span class="delimiter">: </span><span class="description">broadcast an ndarray to a specified shape.</span>
74
83
  - <span class="signature">[`broadcastArrays( arrays )`][@stdlib/ndarray/base/broadcast-arrays]</span><span class="delimiter">: </span><span class="description">broadcast ndarrays to a common shape.</span>
75
- - <span class="signature">[`broadcastScalar( value, dtype, shape, order )`][@stdlib/ndarray/base/broadcast-scalar]</span><span class="delimiter">: </span><span class="description">broadcast a scalar value to an `ndarray` having a specified shape.</span>
84
+ - <span class="signature">[`broadcastScalarLike( x, value )`][@stdlib/ndarray/base/broadcast-scalar-like]</span><span class="delimiter">: </span><span class="description">broadcast a scalar value to an ndarray having the same shape and data type as a provided input ndarray.</span>
85
+ - <span class="signature">[`broadcastScalar( value, dtype, shape, order )`][@stdlib/ndarray/base/broadcast-scalar]</span><span class="delimiter">: </span><span class="description">broadcast a scalar value to an ndarray having a specified shape.</span>
76
86
  - <span class="signature">[`broadcastShapes( shapes )`][@stdlib/ndarray/base/broadcast-shapes]</span><span class="delimiter">: </span><span class="description">broadcast array shapes to a single shape.</span>
77
87
  - <span class="signature">[`bufferCtors( dtype )`][@stdlib/ndarray/base/buffer-ctors]</span><span class="delimiter">: </span><span class="description">ndarray data buffer constructors.</span>
78
88
  - <span class="signature">[`bufferDataTypeEnum( buffer )`][@stdlib/ndarray/base/buffer-dtype-enum]</span><span class="delimiter">: </span><span class="description">return the data type enumeration constant of an ndarray data buffer.</span>
79
89
  - <span class="signature">[`bufferDataType( buffer )`][@stdlib/ndarray/base/buffer-dtype]</span><span class="delimiter">: </span><span class="description">return the data type of an ndarray data buffer.</span>
80
- - <span class="signature">[`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]</span><span class="delimiter">: </span><span class="description">create a zero-filled contiguous linear ndarray data buffer.</span>
81
- - <span class="signature">[`bytesPerElement( dtype )`][@stdlib/ndarray/base/bytes-per-element]</span><span class="delimiter">: </span><span class="description">return the number of bytes per element provided an underlying array data type.</span>
90
+ - <span class="signature">[`buffer( dtype, size )`][@stdlib/ndarray/base/buffer]</span><span class="delimiter">: </span><span class="description">create a contiguous linear ndarray data buffer.</span>
91
+ - <span class="signature">[`bytesPerElement( dtype )`][@stdlib/ndarray/base/bytes-per-element]</span><span class="delimiter">: </span><span class="description">return the number of bytes per element for a provided underlying ndarray data type.</span>
82
92
  - <span class="signature">[`char2dtype( [ch] )`][@stdlib/ndarray/base/char2dtype]</span><span class="delimiter">: </span><span class="description">return the data type string associated with a provided single letter character abbreviation.</span>
83
93
  - <span class="signature">[`clampIndex( idx, max )`][@stdlib/ndarray/base/clamp-index]</span><span class="delimiter">: </span><span class="description">restrict an index to the interval `[0,max]`.</span>
94
+ - <span class="signature">[`complementShape( shape, dims )`][@stdlib/ndarray/base/complement-shape]</span><span class="delimiter">: </span><span class="description">return the shape defined by the dimensions which are not included in a list of dimensions.</span>
95
+ - <span class="signature">[`copy( x )`][@stdlib/ndarray/base/copy]</span><span class="delimiter">: </span><span class="description">copy an input ndarray to a new ndarray having the same shape and data type.</span>
96
+ - <span class="signature">[`countFalsy( arrays )`][@stdlib/ndarray/base/count-falsy]</span><span class="delimiter">: </span><span class="description">count the number of falsy elements in an ndarray.</span>
97
+ - <span class="signature">[`countIf( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/count-if]</span><span class="delimiter">: </span><span class="description">count the number of elements in an ndarray which pass a test implemented by a predicate function.</span>
98
+ - <span class="signature">[`countTruthy( arrays )`][@stdlib/ndarray/base/count-truthy]</span><span class="delimiter">: </span><span class="description">count the number of truthy elements in an ndarray.</span>
84
99
  - <span class="signature">[`ndarray( dtype, buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/ctor]</span><span class="delimiter">: </span><span class="description">create a multidimensional array.</span>
85
100
  - <span class="signature">[`data( x )`][@stdlib/ndarray/base/data-buffer]</span><span class="delimiter">: </span><span class="description">return the underlying data buffer of a provided ndarray.</span>
101
+ - <span class="signature">[`dtypeAlignment( [dtype] )`][@stdlib/ndarray/base/dtype-alignment]</span><span class="delimiter">: </span><span class="description">return the alignment (in bytes) for an underlying array data type.</span>
86
102
  - <span class="signature">[`dtypeChar( [dtype] )`][@stdlib/ndarray/base/dtype-char]</span><span class="delimiter">: </span><span class="description">return the single letter abbreviation for an underlying array data type.</span>
103
+ - <span class="signature">[`dtypeChars( [kind] )`][@stdlib/ndarray/base/dtype-chars]</span><span class="delimiter">: </span><span class="description">list of ndarray data type single letter character abbreviations.</span>
87
104
  - <span class="signature">[`dtypeDesc( [dtype] )`][@stdlib/ndarray/base/dtype-desc]</span><span class="delimiter">: </span><span class="description">return the description for a specified data type.</span>
88
105
  - <span class="signature">[`dtypeEnum2Str( dtype )`][@stdlib/ndarray/base/dtype-enum2str]</span><span class="delimiter">: </span><span class="description">return the data type string associated with an ndarray data type enumeration constant.</span>
106
+ - <span class="signature">[`dtypeEnums()`][@stdlib/ndarray/base/dtype-enums]</span><span class="delimiter">: </span><span class="description">return an object mapping supported data type strings to enumeration constants.</span>
107
+ - <span class="signature">[`dtypeObjects()`][@stdlib/ndarray/base/dtype-objects]</span><span class="delimiter">: </span><span class="description">return an object mapping supported data type strings to data type objects.</span>
89
108
  - <span class="signature">[`dtypeResolveEnum( dtype )`][@stdlib/ndarray/base/dtype-resolve-enum]</span><span class="delimiter">: </span><span class="description">return the enumeration constant associated with a supported ndarray data type value.</span>
90
109
  - <span class="signature">[`dtypeResolveStr( dtype )`][@stdlib/ndarray/base/dtype-resolve-str]</span><span class="delimiter">: </span><span class="description">return the data type string associated with a supported ndarray data type value.</span>
91
110
  - <span class="signature">[`dtypeStr2Enum( dtype )`][@stdlib/ndarray/base/dtype-str2enum]</span><span class="delimiter">: </span><span class="description">return the enumeration constant associated with an ndarray data type string.</span>
111
+ - <span class="signature">[`dtypeStrings( [kind] )`][@stdlib/ndarray/base/dtype-strings]</span><span class="delimiter">: </span><span class="description">list of ndarray data type strings.</span>
92
112
  - <span class="signature">[`dtype( x )`][@stdlib/ndarray/base/dtype]</span><span class="delimiter">: </span><span class="description">return the data type of a provided ndarray.</span>
93
113
  - <span class="signature">[`dtype2c( dtype )`][@stdlib/ndarray/base/dtype2c]</span><span class="delimiter">: </span><span class="description">return the C data type associated with a provided data type value.</span>
114
+ - <span class="signature">[`dtypes2enums( dtypes )`][@stdlib/ndarray/base/dtypes2enums]</span><span class="delimiter">: </span><span class="description">resolve a list of data type enumeration constants.</span>
94
115
  - <span class="signature">[`dtypes2signatures( dtypes, nin, nout )`][@stdlib/ndarray/base/dtypes2signatures]</span><span class="delimiter">: </span><span class="description">transform a list of array argument data types into a list of signatures.</span>
116
+ - <span class="signature">[`dtypes2strings( dtypes )`][@stdlib/ndarray/base/dtypes2strings]</span><span class="delimiter">: </span><span class="description">resolve a list of data type strings.</span>
95
117
  - <span class="signature">[`emptyLike( x )`][@stdlib/ndarray/base/empty-like]</span><span class="delimiter">: </span><span class="description">create an uninitialized ndarray having the same shape and data type as a provided ndarray.</span>
96
118
  - <span class="signature">[`empty( dtype, shape, order )`][@stdlib/ndarray/base/empty]</span><span class="delimiter">: </span><span class="description">create an uninitialized ndarray having a specified shape and data type.</span>
97
- - <span class="signature">[`expandDimensions( x, axis )`][@stdlib/ndarray/base/expand-dimensions]</span><span class="delimiter">: </span><span class="description">expand the shape of an array by inserting a new dimension of size one at a specified axis.</span>
119
+ - <span class="signature">[`everyBy( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/every-by]</span><span class="delimiter">: </span><span class="description">test whether all elements in an ndarray pass a test implemented by a predicate function.</span>
120
+ - <span class="signature">[`every( arrays )`][@stdlib/ndarray/base/every]</span><span class="delimiter">: </span><span class="description">test whether every element in an ndarray is truthy.</span>
121
+ - <span class="signature">[`expandDimensions( x, dim, writable )`][@stdlib/ndarray/base/expand-dimensions]</span><span class="delimiter">: </span><span class="description">expand the shape of an array by inserting a new dimension of size one at a specified dimension index.</span>
122
+ - <span class="signature">[`fillBy( x, fcn[, thisArg] )`][@stdlib/ndarray/base/fill-by]</span><span class="delimiter">: </span><span class="description">fill an input ndarray according to a callback function.</span>
123
+ - <span class="signature">[`fill( x, value )`][@stdlib/ndarray/base/fill]</span><span class="delimiter">: </span><span class="description">fill an input ndarray with a specified value.</span>
124
+ - <span class="signature">[`find( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/find]</span><span class="delimiter">: </span><span class="description">return the first element in an ndarray which passes a test implemented by a predicate function.</span>
98
125
  - <span class="signature">[`flag( x, name )`][@stdlib/ndarray/base/flag]</span><span class="delimiter">: </span><span class="description">return a specified flag for a provided ndarray.</span>
99
126
  - <span class="signature">[`flags( x, copy )`][@stdlib/ndarray/base/flags]</span><span class="delimiter">: </span><span class="description">return the flags of a provided ndarray.</span>
127
+ - <span class="signature">[`flattenShapeFrom( shape, dim )`][@stdlib/ndarray/base/flatten-shape-from]</span><span class="delimiter">: </span><span class="description">flatten a shape starting from a specified dimension.</span>
128
+ - <span class="signature">[`flattenShape( shape, depth )`][@stdlib/ndarray/base/flatten-shape]</span><span class="delimiter">: </span><span class="description">flatten a shape to a specified depth.</span>
100
129
  - <span class="signature">[`fliplr( x, writable )`][@stdlib/ndarray/base/fliplr]</span><span class="delimiter">: </span><span class="description">return a view of an input ndarray in which the order of elements along the last dimension is reversed.</span>
101
130
  - <span class="signature">[`flipud( x, writable )`][@stdlib/ndarray/base/flipud]</span><span class="delimiter">: </span><span class="description">return a view of an input ndarray in which the order of elements along the second-to-last dimension is reversed.</span>
131
+ - <span class="signature">[`forEach( arrays, fcn[, thisArg] )`][@stdlib/ndarray/base/for-each]</span><span class="delimiter">: </span><span class="description">invoke a callback function once for each ndarray element.</span>
132
+ - <span class="signature">[`array2ndarray( buf, order )`][@stdlib/ndarray/base/from-array]</span><span class="delimiter">: </span><span class="description">convert an array to a one-dimensional ndarray.</span>
133
+ - <span class="signature">[`scalar2ndarrayLike( x, value )`][@stdlib/ndarray/base/from-scalar-like]</span><span class="delimiter">: </span><span class="description">convert a scalar value to a zero-dimensional ndarray having the same data type as a provided ndarray.</span>
102
134
  - <span class="signature">[`scalar2ndarray( value, dtype, order )`][@stdlib/ndarray/base/from-scalar]</span><span class="delimiter">: </span><span class="description">convert a scalar value to a zero-dimensional ndarray.</span>
135
+ - <span class="signature">[`includes( arrays )`][@stdlib/ndarray/base/includes]</span><span class="delimiter">: </span><span class="description">test whether an ndarray contains a specified value.</span>
103
136
  - <span class="signature">[`ind( idx, max, mode )`][@stdlib/ndarray/base/ind]</span><span class="delimiter">: </span><span class="description">return an index given an index mode.</span>
104
137
  - <span class="signature">[`ind2sub( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/ind2sub]</span><span class="delimiter">: </span><span class="description">convert a linear index to an array of subscripts.</span>
105
138
  - <span class="signature">[`iterationOrder( strides )`][@stdlib/ndarray/base/iteration-order]</span><span class="delimiter">: </span><span class="description">given a stride array, determine array iteration order.</span>
139
+ - <span class="signature">[`loopOrder( shape, strides )`][@stdlib/ndarray/base/loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
140
+ - <span class="signature">[`map( arrays, fcn[, thisArg] )`][@stdlib/ndarray/base/map]</span><span class="delimiter">: </span><span class="description">apply a callback function to elements in an input ndarray and assign results to elements in an output ndarray.</span>
106
141
  - <span class="signature">[`maxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/max-view-buffer-index]</span><span class="delimiter">: </span><span class="description">compute the maximum linear index in an underlying data buffer accessible to an array view.</span>
107
142
  - <span class="signature">[`maybeBroadcastArray( arr, shape )`][@stdlib/ndarray/base/maybe-broadcast-array]</span><span class="delimiter">: </span><span class="description">broadcast an ndarray to a specified shape if and only if the specified shape differs from the provided ndarray's shape.</span>
108
143
  - <span class="signature">[`maybeBroadcastArrays( arrays )`][@stdlib/ndarray/base/maybe-broadcast-arrays]</span><span class="delimiter">: </span><span class="description">broadcast ndarrays to a common shape.</span>
109
144
  - <span class="signature">[`metaDataProps( meta, dtypes, obj )`][@stdlib/ndarray/base/meta-data-props]</span><span class="delimiter">: </span><span class="description">define non-enumerable read-only properties which expose ndarray function meta data.</span>
145
+ - <span class="signature">[`minSignedIntegerDataType( value )`][@stdlib/ndarray/base/min-signed-integer-dtype]</span><span class="delimiter">: </span><span class="description">determine the minimum ndarray data type for storing a provided signed integer value.</span>
146
+ - <span class="signature">[`minUnsignedIntegerDataType( value )`][@stdlib/ndarray/base/min-unsigned-integer-dtype]</span><span class="delimiter">: </span><span class="description">determine the minimum ndarray data type for storing a provided unsigned integer value.</span>
110
147
  - <span class="signature">[`minViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/min-view-buffer-index]</span><span class="delimiter">: </span><span class="description">compute the minimum linear index in an underlying data buffer accessible to an array view.</span>
111
148
  - <span class="signature">[`minmaxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/minmax-view-buffer-index]</span><span class="delimiter">: </span><span class="description">compute the minimum and maximum linear indices in an underlying data buffer which are accessible to an array view.</span>
149
+ - <span class="signature">[`ndarraylike2ndarray( x )`][@stdlib/ndarray/base/ndarraylike2ndarray]</span><span class="delimiter">: </span><span class="description">convert an ndarray-like object to an `ndarray`.</span>
112
150
  - <span class="signature">[`ndarraylike2object( x )`][@stdlib/ndarray/base/ndarraylike2object]</span><span class="delimiter">: </span><span class="description">convert an `ndarray`-like object to an object likely to have the same "shape".</span>
151
+ - <span class="signature">[`ndarraylike2scalar( x )`][@stdlib/ndarray/base/ndarraylike2scalar]</span><span class="delimiter">: </span><span class="description">convert an ndarray-like object to a scalar value.</span>
113
152
  - <span class="signature">[`ndims( x )`][@stdlib/ndarray/base/ndims]</span><span class="delimiter">: </span><span class="description">return the number of ndarray dimensions.</span>
114
153
  - <span class="signature">[`nextCartesianIndex( shape, order, idx, dim )`][@stdlib/ndarray/base/next-cartesian-index]</span><span class="delimiter">: </span><span class="description">return the next Cartesian index (i.e., set of subscripts/dimension indices).</span>
115
154
  - <span class="signature">[`nonsingletonDimensions( shape )`][@stdlib/ndarray/base/nonsingleton-dimensions]</span><span class="delimiter">: </span><span class="description">return the number of non-singleton dimensions.</span>
116
155
  - <span class="signature">[`normalizeIndex( idx, max )`][@stdlib/ndarray/base/normalize-index]</span><span class="delimiter">: </span><span class="description">normalize an index to the interval `[0,max]`.</span>
156
+ - <span class="signature">[`normalizeIndices( indices, max )`][@stdlib/ndarray/base/normalize-indices]</span><span class="delimiter">: </span><span class="description">normalize a list of indices to the interval `[0,max]`.</span>
117
157
  - <span class="signature">[`nullaryLoopOrder( shape, stridesX )`][@stdlib/ndarray/base/nullary-loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
158
+ - <span class="signature">[`nullaryStrided1dDispatchFactory( table, idtypes, odtypes[, options] )`][@stdlib/ndarray/base/nullary-strided1d-dispatch-factory]</span><span class="delimiter">: </span><span class="description">create a function for applying a strided function to an ndarray.</span>
159
+ - <span class="signature">[`nullaryStrided1dDispatch( table, idtypes, odtypes[, options] )`][@stdlib/ndarray/base/nullary-strided1d-dispatch]</span><span class="delimiter">: </span><span class="description">constructor for applying a strided function to an ndarray.</span>
160
+ - <span class="signature">[`nullaryStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/nullary-strided1d]</span><span class="delimiter">: </span><span class="description">apply a one-dimensional strided array function to a list of specified dimensions in an ndarray.</span>
118
161
  - <span class="signature">[`nullaryBlockSize( dtypeX )`][@stdlib/ndarray/base/nullary-tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
119
162
  - <span class="signature">[`nullary( arrays, fcn )`][@stdlib/ndarray/base/nullary]</span><span class="delimiter">: </span><span class="description">apply a nullary callback and assign results to elements in an output ndarray.</span>
120
163
  - <span class="signature">[`numelDimension( x, dim )`][@stdlib/ndarray/base/numel-dimension]</span><span class="delimiter">: </span><span class="description">return the size (i.e., number of elements) of a specified dimension for a provided ndarray.</span>
121
164
  - <span class="signature">[`numel( shape )`][@stdlib/ndarray/base/numel]</span><span class="delimiter">: </span><span class="description">return the number of elements in an array.</span>
122
165
  - <span class="signature">[`offset( x )`][@stdlib/ndarray/base/offset]</span><span class="delimiter">: </span><span class="description">return the index offset specifying the underlying buffer index of the first iterated ndarray element.</span>
123
166
  - <span class="signature">[`order( x )`][@stdlib/ndarray/base/order]</span><span class="delimiter">: </span><span class="description">return the layout order of a provided ndarray.</span>
167
+ - <span class="signature">[`outputDataType( dtypes, policy )`][@stdlib/ndarray/base/output-dtype]</span><span class="delimiter">: </span><span class="description">resolve the output ndarray data type from a list of input ndarray data types.</span>
124
168
  - <span class="signature">[`outputPolicyEnum2Str( policy )`][@stdlib/ndarray/base/output-policy-enum2str]</span><span class="delimiter">: </span><span class="description">return the policy string associated with an output ndarray data type policy enumeration constant.</span>
125
169
  - <span class="signature">[`outputPolicyResolveEnum( policy )`][@stdlib/ndarray/base/output-policy-resolve-enum]</span><span class="delimiter">: </span><span class="description">return the enumeration constant associated with a supported ndarray data type policy value.</span>
126
170
  - <span class="signature">[`outputPolicyResolveStr( dtype )`][@stdlib/ndarray/base/output-policy-resolve-str]</span><span class="delimiter">: </span><span class="description">return the policy string associated with a supported ndarray data type policy value.</span>
127
171
  - <span class="signature">[`outputPolicyStr2Enum( policy )`][@stdlib/ndarray/base/output-policy-str2enum]</span><span class="delimiter">: </span><span class="description">return the enumeration constant associated with an output ndarray data type policy string.</span>
128
- - <span class="signature">[`prependSingletonDimensions( x, n )`][@stdlib/ndarray/base/prepend-singleton-dimensions]</span><span class="delimiter">: </span><span class="description">prepend singleton dimensions.</span>
172
+ - <span class="signature">[`pop( x, dim, writable )`][@stdlib/ndarray/base/pop]</span><span class="delimiter">: </span><span class="description">return an array containing a truncated view of an input ndarray and a view of the last element(s) along a specified dimension.</span>
173
+ - <span class="signature">[`prependSingletonDimensions( x, n, writable )`][@stdlib/ndarray/base/prepend-singleton-dimensions]</span><span class="delimiter">: </span><span class="description">prepend singleton dimensions.</span>
174
+ - <span class="signature">[`promoteDataTypes( dtypes )`][@stdlib/ndarray/base/promote-dtypes]</span><span class="delimiter">: </span><span class="description">resolve the data type that results from applying promotion rules to a provided list of data types.</span>
175
+ - <span class="signature">[`quaternaryLoopOrder( shape, stridesX, stridesY, stridesZ, stridesW, stridesU )`][@stdlib/ndarray/base/quaternary-loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
176
+ - <span class="signature">[`quaternaryBlockSize( dtypeX, dtypeY, dtypeZ, dtypeW, dtypeU )`][@stdlib/ndarray/base/quaternary-tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
177
+ - <span class="signature">[`quinaryLoopOrder( shape, stridesX, stridesY, stridesZ, stridesW, stridesU, stridesV )`][@stdlib/ndarray/base/quinary-loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
178
+ - <span class="signature">[`quinaryBlockSize( dtypeX, dtypeY, dtypeZ, dtypeW, dtypeU, dtypeV )`][@stdlib/ndarray/base/quinary-tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
129
179
  - <span class="signature">[`removeSingletonDimensions( x )`][@stdlib/ndarray/base/remove-singleton-dimensions]</span><span class="delimiter">: </span><span class="description">remove singleton dimensions.</span>
130
180
  - <span class="signature">[`reverseDimension( x, dim, writable )`][@stdlib/ndarray/base/reverse-dimension]</span><span class="delimiter">: </span><span class="description">return a view of an input ndarray in which the order of elements along a specified dimension is reversed.</span>
131
181
  - <span class="signature">[`reverse( x, writable )`][@stdlib/ndarray/base/reverse]</span><span class="delimiter">: </span><span class="description">return a view of an input ndarray in which the order of elements along each dimension is reversed.</span>
132
182
  - <span class="signature">[`serializeMetaData( x )`][@stdlib/ndarray/base/serialize-meta-data]</span><span class="delimiter">: </span><span class="description">serialize ndarray meta data.</span>
133
183
  - <span class="signature">[`shape( x, copy )`][@stdlib/ndarray/base/shape]</span><span class="delimiter">: </span><span class="description">return the shape of a provided ndarray.</span>
134
184
  - <span class="signature">[`shape2strides( shape, order )`][@stdlib/ndarray/base/shape2strides]</span><span class="delimiter">: </span><span class="description">generate a stride array from an array shape.</span>
185
+ - <span class="signature">[`shift( x, dim, writable )`][@stdlib/ndarray/base/shift]</span><span class="delimiter">: </span><span class="description">return an array containing a truncated view of an input ndarray and a view of the first element(s) along a specified dimension.</span>
135
186
  - <span class="signature">[`singletonDimensions( shape )`][@stdlib/ndarray/base/singleton-dimensions]</span><span class="delimiter">: </span><span class="description">return the number of singleton dimensions.</span>
136
187
  - <span class="signature">[`sliceAssign( x, y, slice, strict )`][@stdlib/ndarray/base/slice-assign]</span><span class="delimiter">: </span><span class="description">assign element values from a broadcasted input `ndarray` to corresponding elements in an output `ndarray` view.</span>
137
188
  - <span class="signature">[`sliceDimensionFrom( x, dim, start, strict, writable )`][@stdlib/ndarray/base/slice-dimension-from]</span><span class="delimiter">: </span><span class="description">return a shifted view of an input ndarray along a specified dimension.</span>
@@ -140,22 +191,52 @@ var o = ns;
140
191
  - <span class="signature">[`sliceFrom( x, start, strict, writable )`][@stdlib/ndarray/base/slice-from]</span><span class="delimiter">: </span><span class="description">return a shifted view of an input ndarray.</span>
141
192
  - <span class="signature">[`sliceTo( x, stop, strict, writable )`][@stdlib/ndarray/base/slice-to]</span><span class="delimiter">: </span><span class="description">return a truncated view of an input ndarray.</span>
142
193
  - <span class="signature">[`slice( x, slice, strict, writable )`][@stdlib/ndarray/base/slice]</span><span class="delimiter">: </span><span class="description">return a view of an input ndarray.</span>
194
+ - <span class="signature">[`someBy( arrays, predicate[, thisArg ] )`][@stdlib/ndarray/base/some-by]</span><span class="delimiter">: </span><span class="description">test whether at least `n` elements in an ndarray pass a test implemented by a predicate function.</span>
195
+ - <span class="signature">[`some( arrays )`][@stdlib/ndarray/base/some]</span><span class="delimiter">: </span><span class="description">test whether at least `n` elements in an ndarray are truthy.</span>
196
+ - <span class="signature">[`spreadDimensions( ndims, x, dims, writable )`][@stdlib/ndarray/base/spread-dimensions]</span><span class="delimiter">: </span><span class="description">expand the shape of an array to a specified dimensionality by spreading its dimensions to specified dimension indices and inserting dimensions of size one for the remaining dimensions.</span>
143
197
  - <span class="signature">[`stride( x, dim )`][@stdlib/ndarray/base/stride]</span><span class="delimiter">: </span><span class="description">return the stride along a specified dimension for a provided ndarray.</span>
144
198
  - <span class="signature">[`strides( x, copy )`][@stdlib/ndarray/base/strides]</span><span class="delimiter">: </span><span class="description">return the strides of a provided ndarray.</span>
145
199
  - <span class="signature">[`strides2offset( shape, strides )`][@stdlib/ndarray/base/strides2offset]</span><span class="delimiter">: </span><span class="description">determine the index offset which specifies the location of the first indexed value in a multidimensional array based on a stride array.</span>
146
200
  - <span class="signature">[`strides2order( strides )`][@stdlib/ndarray/base/strides2order]</span><span class="delimiter">: </span><span class="description">determine the order of a multidimensional array based on a provided stride array.</span>
147
201
  - <span class="signature">[`sub2ind( shape, strides, offset, ...subscripts, mode )`][@stdlib/ndarray/base/sub2ind]</span><span class="delimiter">: </span><span class="description">convert subscripts to a linear index.</span>
202
+ - <span class="signature">[`ternaryLoopOrder( shape, stridesX, stridesY, stridesZ, stridesW )`][@stdlib/ndarray/base/ternary-loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
203
+ - <span class="signature">[`ternaryOutputDataType( xdtype, ydtype, zdtype, policy )`][@stdlib/ndarray/base/ternary-output-dtype]</span><span class="delimiter">: </span><span class="description">resolve the output ndarray data type for a ternary function.</span>
204
+ - <span class="signature">[`ternaryBlockSize( dtypeX, dtypeY, dtypeZ, dtypeW )`][@stdlib/ndarray/base/ternary-tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
205
+ - <span class="signature">[`ternary( arrays, fcn )`][@stdlib/ndarray/base/ternary]</span><span class="delimiter">: </span><span class="description">apply a ternary callback to elements in input ndarrays and assign results to elements in an output ndarray.</span>
206
+ - <span class="signature">[`blockSize( dtypes )`][@stdlib/ndarray/base/tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
148
207
  - <span class="signature">[`ndarray2array( buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/to-array]</span><span class="delimiter">: </span><span class="description">convert an ndarray buffer to a generic array.</span>
208
+ - <span class="signature">[`toFlippedlr( x )`][@stdlib/ndarray/base/to-flippedlr]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements along the last dimension of an input ndarray is reversed.</span>
209
+ - <span class="signature">[`toFlippedud( x )`][@stdlib/ndarray/base/to-flippedud]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements along the second-to-last dimension of an input ndarray is reversed.</span>
210
+ - <span class="signature">[`toNormalizedIndices( indices, max )`][@stdlib/ndarray/base/to-normalized-indices]</span><span class="delimiter">: </span><span class="description">normalize a list of indices to the interval `[0,max]`.</span>
211
+ - <span class="signature">[`toReversedDimension( x, dim )`][@stdlib/ndarray/base/to-reversed-dimension]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements of an input ndarray along a specified dimension is reversed.</span>
212
+ - <span class="signature">[`toReversed( x )`][@stdlib/ndarray/base/to-reversed]</span><span class="delimiter">: </span><span class="description">return a new ndarray where the order of elements of an input ndarray is reversed along each dimension.</span>
213
+ - <span class="signature">[`toUniqueNormalizedIndices( indices, max )`][@stdlib/ndarray/base/to-unique-normalized-indices]</span><span class="delimiter">: </span><span class="description">return a list of unique indices after normalizing to the interval `[0,max]`.</span>
149
214
  - <span class="signature">[`transpose( x )`][@stdlib/ndarray/base/transpose]</span><span class="delimiter">: </span><span class="description">transpose a matrix (or a stack of matrices).</span>
215
+ - <span class="signature">[`unaryAccumulate( arrays, initial, clbk )`][@stdlib/ndarray/base/unary-accumulate]</span><span class="delimiter">: </span><span class="description">perform a reduction over elements in an input ndarray.</span>
216
+ - <span class="signature">[`unaryAddonDispatch( addon, fallback )`][@stdlib/ndarray/base/unary-addon-dispatch]</span><span class="delimiter">: </span><span class="description">dispatch to a native add-on applying a unary function to an input ndarray.</span>
150
217
  - <span class="signature">[`unaryBy( arrays, fcn, clbk[, thisArg] )`][@stdlib/ndarray/base/unary-by]</span><span class="delimiter">: </span><span class="description">apply a unary function to each element in an input ndarray according to a callback function and assign results to elements in an output ndarray.</span>
218
+ - <span class="signature">[`unaryInputCastingDataType( idtype, odtype, policy )`][@stdlib/ndarray/base/unary-input-casting-dtype]</span><span class="delimiter">: </span><span class="description">resolve the input ndarray casting data type for a unary function.</span>
151
219
  - <span class="signature">[`unaryLoopOrder( shape, stridesX, stridesY )`][@stdlib/ndarray/base/unary-loop-interchange-order]</span><span class="delimiter">: </span><span class="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
152
220
  - <span class="signature">[`unaryOutputDataType( dtype, policy )`][@stdlib/ndarray/base/unary-output-dtype]</span><span class="delimiter">: </span><span class="description">resolve the output ndarray data type for a unary function.</span>
221
+ - <span class="signature">[`unaryReduceStrided1dAssignStruct( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct]</span><span class="delimiter">: </span><span class="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function which accepts an output `struct` object and assign results to a provided output ndarray.</span>
222
+ - <span class="signature">[`unaryReduceStrided1dBy( fcn, arrays, dims[, options], clbk[, thisArg] )`][@stdlib/ndarray/base/unary-reduce-strided1d-by]</span><span class="delimiter">: </span><span class="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function accepting a callback and assign results to a provided output ndarray.</span>
223
+ - <span class="signature">[`unaryReduceStrided1dDispatchByFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory]</span><span class="delimiter">: </span><span class="description">create a function for performing a reduction on an input ndarray according to a callback function.</span>
224
+ - <span class="signature">[`unaryReduceStrided1dDispatchBy( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by]</span><span class="delimiter">: </span><span class="description">constructor for performing a reduction on an input ndarray according to a callback function.</span>
225
+ - <span class="signature">[`unaryReduceStrided1dDispatchFactory( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory]</span><span class="delimiter">: </span><span class="description">create a function for performing a reduction on an input ndarray.</span>
226
+ - <span class="signature">[`unaryReduceStrided1dDispatch( table, idtypes, odtypes, policies )`][@stdlib/ndarray/base/unary-reduce-strided1d-dispatch]</span><span class="delimiter">: </span><span class="description">constructor for performing a reduction on an input ndarray.</span>
227
+ - <span class="signature">[`unaryReduceStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-strided1d]</span><span class="delimiter">: </span><span class="description">perform a reduction over a list of specified dimensions in an input ndarray via a one-dimensional strided array reduction function and assign results to a provided output ndarray.</span>
228
+ - <span class="signature">[`unaryReduceSubarrayBy( fcn, arrays, dims[, options], clbk[, thisArg] )`][@stdlib/ndarray/base/unary-reduce-subarray-by]</span><span class="delimiter">: </span><span class="description">perform a reduction over a list of specified dimensions in an input ndarray according to a callback function and assign results to a provided output ndarray.</span>
229
+ - <span class="signature">[`unaryReduceSubarray( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-reduce-subarray]</span><span class="delimiter">: </span><span class="description">perform a reduction over a list of specified dimensions in an input ndarray and assign results to a provided output ndarray.</span>
230
+ - <span class="signature">[`unaryStrided1dDispatchFactory( table, idtypes, odtypes, policies[, options] )`][@stdlib/ndarray/base/unary-strided1d-dispatch-factory]</span><span class="delimiter">: </span><span class="description">create a function for applying a strided function an input ndarray.</span>
231
+ - <span class="signature">[`unaryStrided1dDispatch( table, idtypes, odtypes, policies[, options] )`][@stdlib/ndarray/base/unary-strided1d-dispatch]</span><span class="delimiter">: </span><span class="description">constructor for applying a strided function to an input ndarray.</span>
232
+ - <span class="signature">[`unaryStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/unary-strided1d]</span><span class="delimiter">: </span><span class="description">apply a one-dimensional strided array function to a list of specified dimensions in an input ndarray and assign results to a provided output ndarray.</span>
153
233
  - <span class="signature">[`unaryBlockSize( dtypeX, dtypeY )`][@stdlib/ndarray/base/unary-tiling-block-size]</span><span class="delimiter">: </span><span class="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
154
234
  - <span class="signature">[`unary( arrays, fcn )`][@stdlib/ndarray/base/unary]</span><span class="delimiter">: </span><span class="description">apply a unary callback to elements in an input ndarray and assign results to elements in an output ndarray.</span>
155
235
  - <span class="signature">[`vind2bind( shape, strides, offset, order, idx, mode )`][@stdlib/ndarray/base/vind2bind]</span><span class="delimiter">: </span><span class="description">convert a linear index in an array view to a linear index in an underlying data buffer.</span>
156
236
  - <span class="signature">[`wrapIndex( idx, max )`][@stdlib/ndarray/base/wrap-index]</span><span class="delimiter">: </span><span class="description">wrap an index on the interval `[0,max]`.</span>
157
237
  - <span class="signature">[`zerosLike( x )`][@stdlib/ndarray/base/zeros-like]</span><span class="delimiter">: </span><span class="description">create a zero-filled ndarray having the same shape and data type as a provided ndarray.</span>
158
238
  - <span class="signature">[`zeros( dtype, shape, order )`][@stdlib/ndarray/base/zeros]</span><span class="delimiter">: </span><span class="description">create a zero-filled ndarray having a specified shape and data type.</span>
239
+ - <span class="signature">[`zip2views1d( arrays, labels )`][@stdlib/ndarray/base/zip2views1d]</span><span class="delimiter">: </span><span class="description">zip one or more one-dimensional ndarrays to an array of composite views.</span>
159
240
 
160
241
  </div>
161
242
 
@@ -230,7 +311,7 @@ See [LICENSE][stdlib-license].
230
311
 
231
312
  ## Copyright
232
313
 
233
- Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
314
+ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
234
315
 
235
316
  </section>
236
317
 
@@ -243,8 +324,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
243
324
  [npm-image]: http://img.shields.io/npm/v/@stdlib/ndarray-base.svg
244
325
  [npm-url]: https://npmjs.org/package/@stdlib/ndarray-base
245
326
 
246
- [test-image]: https://github.com/stdlib-js/ndarray-base/actions/workflows/test.yml/badge.svg?branch=v0.2.1
247
- [test-url]: https://github.com/stdlib-js/ndarray-base/actions/workflows/test.yml?query=branch:v0.2.1
327
+ [test-image]: https://github.com/stdlib-js/ndarray-base/actions/workflows/test.yml/badge.svg?branch=v0.4.0
328
+ [test-url]: https://github.com/stdlib-js/ndarray-base/actions/workflows/test.yml?query=branch:v0.4.0
248
329
 
249
330
  [coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-base/main.svg
250
331
  [coverage-url]: https://codecov.io/github/stdlib-js/ndarray-base?branch=main
@@ -256,8 +337,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
256
337
 
257
338
  -->
258
339
 
259
- [chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
260
- [chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
340
+ [chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
341
+ [chat-url]: https://stdlib.zulipchat.com
261
342
 
262
343
  [stdlib]: https://github.com/stdlib-js/stdlib
263
344
 
@@ -280,18 +361,38 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
280
361
 
281
362
  [@stdlib/ndarray/base/assert]: https://www.npmjs.com/package/@stdlib/ndarray-base-assert
282
363
 
364
+ [@stdlib/ndarray/base/any-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-any-by
365
+
366
+ [@stdlib/ndarray/base/any]: https://www.npmjs.com/package/@stdlib/ndarray-base-any
367
+
283
368
  [@stdlib/ndarray/base/assign]: https://www.npmjs.com/package/@stdlib/ndarray-base-assign
284
369
 
370
+ [@stdlib/ndarray/base/binary-input-casting-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-input-casting-dtype
371
+
285
372
  [@stdlib/ndarray/base/binary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-loop-interchange-order
286
373
 
374
+ [@stdlib/ndarray/base/binary-output-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-output-dtype
375
+
376
+ [@stdlib/ndarray/base/binary-reduce-strided1d-dispatch-factory]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-reduce-strided1d-dispatch-factory
377
+
378
+ [@stdlib/ndarray/base/binary-reduce-strided1d-dispatch]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-reduce-strided1d-dispatch
379
+
380
+ [@stdlib/ndarray/base/binary-reduce-strided1d]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-reduce-strided1d
381
+
287
382
  [@stdlib/ndarray/base/binary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-tiling-block-size
288
383
 
384
+ [@stdlib/ndarray/base/binary]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary
385
+
289
386
  [@stdlib/ndarray/base/bind2vind]: https://www.npmjs.com/package/@stdlib/ndarray-base-bind2vind
290
387
 
388
+ [@stdlib/ndarray/base/broadcast-array-except-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-array-except-dimensions
389
+
291
390
  [@stdlib/ndarray/base/broadcast-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-array
292
391
 
293
392
  [@stdlib/ndarray/base/broadcast-arrays]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-arrays
294
393
 
394
+ [@stdlib/ndarray/base/broadcast-scalar-like]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-scalar-like
395
+
295
396
  [@stdlib/ndarray/base/broadcast-scalar]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-scalar
296
397
 
297
398
  [@stdlib/ndarray/base/broadcast-shapes]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-shapes
@@ -310,50 +411,100 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
310
411
 
311
412
  [@stdlib/ndarray/base/clamp-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-clamp-index
312
413
 
414
+ [@stdlib/ndarray/base/complement-shape]: https://www.npmjs.com/package/@stdlib/ndarray-base-complement-shape
415
+
416
+ [@stdlib/ndarray/base/copy]: https://www.npmjs.com/package/@stdlib/ndarray-base-copy
417
+
418
+ [@stdlib/ndarray/base/count-falsy]: https://www.npmjs.com/package/@stdlib/ndarray-base-count-falsy
419
+
420
+ [@stdlib/ndarray/base/count-if]: https://www.npmjs.com/package/@stdlib/ndarray-base-count-if
421
+
422
+ [@stdlib/ndarray/base/count-truthy]: https://www.npmjs.com/package/@stdlib/ndarray-base-count-truthy
423
+
313
424
  [@stdlib/ndarray/base/ctor]: https://www.npmjs.com/package/@stdlib/ndarray-base-ctor
314
425
 
315
426
  [@stdlib/ndarray/base/data-buffer]: https://www.npmjs.com/package/@stdlib/ndarray-base-data-buffer
316
427
 
428
+ [@stdlib/ndarray/base/dtype-alignment]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-alignment
429
+
317
430
  [@stdlib/ndarray/base/dtype-char]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-char
318
431
 
432
+ [@stdlib/ndarray/base/dtype-chars]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-chars
433
+
319
434
  [@stdlib/ndarray/base/dtype-desc]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-desc
320
435
 
321
436
  [@stdlib/ndarray/base/dtype-enum2str]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-enum2str
322
437
 
438
+ [@stdlib/ndarray/base/dtype-enums]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-enums
439
+
440
+ [@stdlib/ndarray/base/dtype-objects]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-objects
441
+
323
442
  [@stdlib/ndarray/base/dtype-resolve-enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-resolve-enum
324
443
 
325
444
  [@stdlib/ndarray/base/dtype-resolve-str]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-resolve-str
326
445
 
327
446
  [@stdlib/ndarray/base/dtype-str2enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-str2enum
328
447
 
448
+ [@stdlib/ndarray/base/dtype-strings]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-strings
449
+
329
450
  [@stdlib/ndarray/base/dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype
330
451
 
331
452
  [@stdlib/ndarray/base/dtype2c]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype2c
332
453
 
454
+ [@stdlib/ndarray/base/dtypes2enums]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtypes2enums
455
+
333
456
  [@stdlib/ndarray/base/dtypes2signatures]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtypes2signatures
334
457
 
458
+ [@stdlib/ndarray/base/dtypes2strings]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtypes2strings
459
+
335
460
  [@stdlib/ndarray/base/empty-like]: https://www.npmjs.com/package/@stdlib/ndarray-base-empty-like
336
461
 
337
462
  [@stdlib/ndarray/base/empty]: https://www.npmjs.com/package/@stdlib/ndarray-base-empty
338
463
 
464
+ [@stdlib/ndarray/base/every-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-every-by
465
+
466
+ [@stdlib/ndarray/base/every]: https://www.npmjs.com/package/@stdlib/ndarray-base-every
467
+
339
468
  [@stdlib/ndarray/base/expand-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-expand-dimensions
340
469
 
470
+ [@stdlib/ndarray/base/fill-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-fill-by
471
+
472
+ [@stdlib/ndarray/base/fill]: https://www.npmjs.com/package/@stdlib/ndarray-base-fill
473
+
474
+ [@stdlib/ndarray/base/find]: https://www.npmjs.com/package/@stdlib/ndarray-base-find
475
+
341
476
  [@stdlib/ndarray/base/flag]: https://www.npmjs.com/package/@stdlib/ndarray-base-flag
342
477
 
343
478
  [@stdlib/ndarray/base/flags]: https://www.npmjs.com/package/@stdlib/ndarray-base-flags
344
479
 
480
+ [@stdlib/ndarray/base/flatten-shape-from]: https://www.npmjs.com/package/@stdlib/ndarray-base-flatten-shape-from
481
+
482
+ [@stdlib/ndarray/base/flatten-shape]: https://www.npmjs.com/package/@stdlib/ndarray-base-flatten-shape
483
+
345
484
  [@stdlib/ndarray/base/fliplr]: https://www.npmjs.com/package/@stdlib/ndarray-base-fliplr
346
485
 
347
486
  [@stdlib/ndarray/base/flipud]: https://www.npmjs.com/package/@stdlib/ndarray-base-flipud
348
487
 
488
+ [@stdlib/ndarray/base/for-each]: https://www.npmjs.com/package/@stdlib/ndarray-base-for-each
489
+
490
+ [@stdlib/ndarray/base/from-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-from-array
491
+
492
+ [@stdlib/ndarray/base/from-scalar-like]: https://www.npmjs.com/package/@stdlib/ndarray-base-from-scalar-like
493
+
349
494
  [@stdlib/ndarray/base/from-scalar]: https://www.npmjs.com/package/@stdlib/ndarray-base-from-scalar
350
495
 
496
+ [@stdlib/ndarray/base/includes]: https://www.npmjs.com/package/@stdlib/ndarray-base-includes
497
+
351
498
  [@stdlib/ndarray/base/ind]: https://www.npmjs.com/package/@stdlib/ndarray-base-ind
352
499
 
353
500
  [@stdlib/ndarray/base/ind2sub]: https://www.npmjs.com/package/@stdlib/ndarray-base-ind2sub
354
501
 
355
502
  [@stdlib/ndarray/base/iteration-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-iteration-order
356
503
 
504
+ [@stdlib/ndarray/base/loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-loop-interchange-order
505
+
506
+ [@stdlib/ndarray/base/map]: https://www.npmjs.com/package/@stdlib/ndarray-base-map
507
+
357
508
  [@stdlib/ndarray/base/max-view-buffer-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-max-view-buffer-index
358
509
 
359
510
  [@stdlib/ndarray/base/maybe-broadcast-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-maybe-broadcast-array
@@ -362,12 +513,20 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
362
513
 
363
514
  [@stdlib/ndarray/base/meta-data-props]: https://www.npmjs.com/package/@stdlib/ndarray-base-meta-data-props
364
515
 
516
+ [@stdlib/ndarray/base/min-signed-integer-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-min-signed-integer-dtype
517
+
518
+ [@stdlib/ndarray/base/min-unsigned-integer-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-min-unsigned-integer-dtype
519
+
365
520
  [@stdlib/ndarray/base/min-view-buffer-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-min-view-buffer-index
366
521
 
367
522
  [@stdlib/ndarray/base/minmax-view-buffer-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-minmax-view-buffer-index
368
523
 
524
+ [@stdlib/ndarray/base/ndarraylike2ndarray]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndarraylike2ndarray
525
+
369
526
  [@stdlib/ndarray/base/ndarraylike2object]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndarraylike2object
370
527
 
528
+ [@stdlib/ndarray/base/ndarraylike2scalar]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndarraylike2scalar
529
+
371
530
  [@stdlib/ndarray/base/ndims]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndims
372
531
 
373
532
  [@stdlib/ndarray/base/next-cartesian-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-next-cartesian-index
@@ -376,8 +535,16 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
376
535
 
377
536
  [@stdlib/ndarray/base/normalize-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-normalize-index
378
537
 
538
+ [@stdlib/ndarray/base/normalize-indices]: https://www.npmjs.com/package/@stdlib/ndarray-base-normalize-indices
539
+
379
540
  [@stdlib/ndarray/base/nullary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-loop-interchange-order
380
541
 
542
+ [@stdlib/ndarray/base/nullary-strided1d-dispatch-factory]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-strided1d-dispatch-factory
543
+
544
+ [@stdlib/ndarray/base/nullary-strided1d-dispatch]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-strided1d-dispatch
545
+
546
+ [@stdlib/ndarray/base/nullary-strided1d]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-strided1d
547
+
381
548
  [@stdlib/ndarray/base/nullary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-tiling-block-size
382
549
 
383
550
  [@stdlib/ndarray/base/nullary]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary
@@ -390,6 +557,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
390
557
 
391
558
  [@stdlib/ndarray/base/order]: https://www.npmjs.com/package/@stdlib/ndarray-base-order
392
559
 
560
+ [@stdlib/ndarray/base/output-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-dtype
561
+
393
562
  [@stdlib/ndarray/base/output-policy-enum2str]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-policy-enum2str
394
563
 
395
564
  [@stdlib/ndarray/base/output-policy-resolve-enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-policy-resolve-enum
@@ -398,8 +567,20 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
398
567
 
399
568
  [@stdlib/ndarray/base/output-policy-str2enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-policy-str2enum
400
569
 
570
+ [@stdlib/ndarray/base/pop]: https://www.npmjs.com/package/@stdlib/ndarray-base-pop
571
+
401
572
  [@stdlib/ndarray/base/prepend-singleton-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-prepend-singleton-dimensions
402
573
 
574
+ [@stdlib/ndarray/base/promote-dtypes]: https://www.npmjs.com/package/@stdlib/ndarray-base-promote-dtypes
575
+
576
+ [@stdlib/ndarray/base/quaternary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-quaternary-loop-interchange-order
577
+
578
+ [@stdlib/ndarray/base/quaternary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-quaternary-tiling-block-size
579
+
580
+ [@stdlib/ndarray/base/quinary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-quinary-loop-interchange-order
581
+
582
+ [@stdlib/ndarray/base/quinary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-quinary-tiling-block-size
583
+
403
584
  [@stdlib/ndarray/base/remove-singleton-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-remove-singleton-dimensions
404
585
 
405
586
  [@stdlib/ndarray/base/reverse-dimension]: https://www.npmjs.com/package/@stdlib/ndarray-base-reverse-dimension
@@ -412,6 +593,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
412
593
 
413
594
  [@stdlib/ndarray/base/shape2strides]: https://www.npmjs.com/package/@stdlib/ndarray-base-shape2strides
414
595
 
596
+ [@stdlib/ndarray/base/shift]: https://www.npmjs.com/package/@stdlib/ndarray-base-shift
597
+
415
598
  [@stdlib/ndarray/base/singleton-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-singleton-dimensions
416
599
 
417
600
  [@stdlib/ndarray/base/slice-assign]: https://www.npmjs.com/package/@stdlib/ndarray-base-slice-assign
@@ -428,6 +611,12 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
428
611
 
429
612
  [@stdlib/ndarray/base/slice]: https://www.npmjs.com/package/@stdlib/ndarray-base-slice
430
613
 
614
+ [@stdlib/ndarray/base/some-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-some-by
615
+
616
+ [@stdlib/ndarray/base/some]: https://www.npmjs.com/package/@stdlib/ndarray-base-some
617
+
618
+ [@stdlib/ndarray/base/spread-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-spread-dimensions
619
+
431
620
  [@stdlib/ndarray/base/stride]: https://www.npmjs.com/package/@stdlib/ndarray-base-stride
432
621
 
433
622
  [@stdlib/ndarray/base/strides]: https://www.npmjs.com/package/@stdlib/ndarray-base-strides
@@ -438,16 +627,68 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
438
627
 
439
628
  [@stdlib/ndarray/base/sub2ind]: https://www.npmjs.com/package/@stdlib/ndarray-base-sub2ind
440
629
 
630
+ [@stdlib/ndarray/base/ternary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-ternary-loop-interchange-order
631
+
632
+ [@stdlib/ndarray/base/ternary-output-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-ternary-output-dtype
633
+
634
+ [@stdlib/ndarray/base/ternary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-ternary-tiling-block-size
635
+
636
+ [@stdlib/ndarray/base/ternary]: https://www.npmjs.com/package/@stdlib/ndarray-base-ternary
637
+
638
+ [@stdlib/ndarray/base/tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-tiling-block-size
639
+
441
640
  [@stdlib/ndarray/base/to-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-array
442
641
 
642
+ [@stdlib/ndarray/base/to-flippedlr]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-flippedlr
643
+
644
+ [@stdlib/ndarray/base/to-flippedud]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-flippedud
645
+
646
+ [@stdlib/ndarray/base/to-normalized-indices]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-normalized-indices
647
+
648
+ [@stdlib/ndarray/base/to-reversed-dimension]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-reversed-dimension
649
+
650
+ [@stdlib/ndarray/base/to-reversed]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-reversed
651
+
652
+ [@stdlib/ndarray/base/to-unique-normalized-indices]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-unique-normalized-indices
653
+
443
654
  [@stdlib/ndarray/base/transpose]: https://www.npmjs.com/package/@stdlib/ndarray-base-transpose
444
655
 
656
+ [@stdlib/ndarray/base/unary-accumulate]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-accumulate
657
+
658
+ [@stdlib/ndarray/base/unary-addon-dispatch]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-addon-dispatch
659
+
445
660
  [@stdlib/ndarray/base/unary-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-by
446
661
 
662
+ [@stdlib/ndarray/base/unary-input-casting-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-input-casting-dtype
663
+
447
664
  [@stdlib/ndarray/base/unary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-loop-interchange-order
448
665
 
449
666
  [@stdlib/ndarray/base/unary-output-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-output-dtype
450
667
 
668
+ [@stdlib/ndarray/base/unary-reduce-strided1d-assign-struct]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d-assign-struct
669
+
670
+ [@stdlib/ndarray/base/unary-reduce-strided1d-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d-by
671
+
672
+ [@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by-factory]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by-factory
673
+
674
+ [@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-by
675
+
676
+ [@stdlib/ndarray/base/unary-reduce-strided1d-dispatch-factory]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d-dispatch-factory
677
+
678
+ [@stdlib/ndarray/base/unary-reduce-strided1d-dispatch]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d-dispatch
679
+
680
+ [@stdlib/ndarray/base/unary-reduce-strided1d]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-strided1d
681
+
682
+ [@stdlib/ndarray/base/unary-reduce-subarray-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-subarray-by
683
+
684
+ [@stdlib/ndarray/base/unary-reduce-subarray]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-reduce-subarray
685
+
686
+ [@stdlib/ndarray/base/unary-strided1d-dispatch-factory]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-strided1d-dispatch-factory
687
+
688
+ [@stdlib/ndarray/base/unary-strided1d-dispatch]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-strided1d-dispatch
689
+
690
+ [@stdlib/ndarray/base/unary-strided1d]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-strided1d
691
+
451
692
  [@stdlib/ndarray/base/unary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-tiling-block-size
452
693
 
453
694
  [@stdlib/ndarray/base/unary]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary
@@ -460,6 +701,8 @@ Copyright &copy; 2016-2024. The Stdlib [Authors][stdlib-authors].
460
701
 
461
702
  [@stdlib/ndarray/base/zeros]: https://www.npmjs.com/package/@stdlib/ndarray-base-zeros
462
703
 
704
+ [@stdlib/ndarray/base/zip2views1d]: https://www.npmjs.com/package/@stdlib/ndarray-base-zip2views1d
705
+
463
706
  <!-- </toc-links> -->
464
707
 
465
708
  </section>