@stdlib/ndarray-base 0.3.0 → 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 +1 -1
- package/README.md +249 -9
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/docs/types/index.d.ts +2615 -248
- package/lib/index.js +720 -0
- package/package.json +98 -18
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2026 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -66,73 +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">[`
|
|
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
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>
|
|
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
|
|
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">[`
|
|
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>
|
|
102
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>
|
|
103
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>
|
|
104
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>
|
|
105
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>
|
|
106
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>
|
|
107
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>
|
|
108
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>
|
|
109
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>
|
|
110
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>
|
|
111
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>
|
|
112
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>
|
|
113
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>
|
|
114
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>
|
|
115
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>
|
|
116
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>
|
|
117
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>
|
|
118
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>
|
|
119
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>
|
|
120
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>
|
|
121
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>
|
|
122
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>
|
|
123
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>
|
|
124
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>
|
|
125
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>
|
|
126
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>
|
|
127
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>
|
|
128
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>
|
|
129
|
-
- <span class="signature">[`
|
|
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>
|
|
130
179
|
- <span class="signature">[`removeSingletonDimensions( x )`][@stdlib/ndarray/base/remove-singleton-dimensions]</span><span class="delimiter">: </span><span class="description">remove singleton dimensions.</span>
|
|
131
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>
|
|
132
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>
|
|
133
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>
|
|
134
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>
|
|
135
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>
|
|
136
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>
|
|
137
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>
|
|
138
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>
|
|
@@ -141,22 +191,52 @@ var o = ns;
|
|
|
141
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>
|
|
142
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>
|
|
143
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>
|
|
144
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>
|
|
145
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>
|
|
146
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>
|
|
147
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>
|
|
148
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>
|
|
149
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>
|
|
150
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>
|
|
151
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>
|
|
152
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>
|
|
153
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>
|
|
154
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>
|
|
155
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>
|
|
156
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>
|
|
157
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>
|
|
158
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>
|
|
159
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>
|
|
160
240
|
|
|
161
241
|
</div>
|
|
162
242
|
|
|
@@ -231,7 +311,7 @@ See [LICENSE][stdlib-license].
|
|
|
231
311
|
|
|
232
312
|
## Copyright
|
|
233
313
|
|
|
234
|
-
Copyright © 2016-
|
|
314
|
+
Copyright © 2016-2026. The Stdlib [Authors][stdlib-authors].
|
|
235
315
|
|
|
236
316
|
</section>
|
|
237
317
|
|
|
@@ -244,8 +324,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
244
324
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/ndarray-base.svg
|
|
245
325
|
[npm-url]: https://npmjs.org/package/@stdlib/ndarray-base
|
|
246
326
|
|
|
247
|
-
[test-image]: https://github.com/stdlib-js/ndarray-base/actions/workflows/test.yml/badge.svg?branch=v0.
|
|
248
|
-
[test-url]: https://github.com/stdlib-js/ndarray-base/actions/workflows/test.yml?query=branch:v0.
|
|
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
|
|
249
329
|
|
|
250
330
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/ndarray-base/main.svg
|
|
251
331
|
[coverage-url]: https://codecov.io/github/stdlib-js/ndarray-base?branch=main
|
|
@@ -257,8 +337,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
257
337
|
|
|
258
338
|
-->
|
|
259
339
|
|
|
260
|
-
[chat-image]: https://img.shields.io/
|
|
261
|
-
[chat-url]: https://
|
|
340
|
+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
|
|
341
|
+
[chat-url]: https://stdlib.zulipchat.com
|
|
262
342
|
|
|
263
343
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
264
344
|
|
|
@@ -281,18 +361,38 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
281
361
|
|
|
282
362
|
[@stdlib/ndarray/base/assert]: https://www.npmjs.com/package/@stdlib/ndarray-base-assert
|
|
283
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
|
+
|
|
284
368
|
[@stdlib/ndarray/base/assign]: https://www.npmjs.com/package/@stdlib/ndarray-base-assign
|
|
285
369
|
|
|
370
|
+
[@stdlib/ndarray/base/binary-input-casting-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-input-casting-dtype
|
|
371
|
+
|
|
286
372
|
[@stdlib/ndarray/base/binary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-loop-interchange-order
|
|
287
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
|
+
|
|
288
382
|
[@stdlib/ndarray/base/binary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary-tiling-block-size
|
|
289
383
|
|
|
384
|
+
[@stdlib/ndarray/base/binary]: https://www.npmjs.com/package/@stdlib/ndarray-base-binary
|
|
385
|
+
|
|
290
386
|
[@stdlib/ndarray/base/bind2vind]: https://www.npmjs.com/package/@stdlib/ndarray-base-bind2vind
|
|
291
387
|
|
|
388
|
+
[@stdlib/ndarray/base/broadcast-array-except-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-array-except-dimensions
|
|
389
|
+
|
|
292
390
|
[@stdlib/ndarray/base/broadcast-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-array
|
|
293
391
|
|
|
294
392
|
[@stdlib/ndarray/base/broadcast-arrays]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-arrays
|
|
295
393
|
|
|
394
|
+
[@stdlib/ndarray/base/broadcast-scalar-like]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-scalar-like
|
|
395
|
+
|
|
296
396
|
[@stdlib/ndarray/base/broadcast-scalar]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-scalar
|
|
297
397
|
|
|
298
398
|
[@stdlib/ndarray/base/broadcast-shapes]: https://www.npmjs.com/package/@stdlib/ndarray-base-broadcast-shapes
|
|
@@ -311,52 +411,100 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
311
411
|
|
|
312
412
|
[@stdlib/ndarray/base/clamp-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-clamp-index
|
|
313
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
|
+
|
|
314
424
|
[@stdlib/ndarray/base/ctor]: https://www.npmjs.com/package/@stdlib/ndarray-base-ctor
|
|
315
425
|
|
|
316
426
|
[@stdlib/ndarray/base/data-buffer]: https://www.npmjs.com/package/@stdlib/ndarray-base-data-buffer
|
|
317
427
|
|
|
428
|
+
[@stdlib/ndarray/base/dtype-alignment]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-alignment
|
|
429
|
+
|
|
318
430
|
[@stdlib/ndarray/base/dtype-char]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-char
|
|
319
431
|
|
|
432
|
+
[@stdlib/ndarray/base/dtype-chars]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-chars
|
|
433
|
+
|
|
320
434
|
[@stdlib/ndarray/base/dtype-desc]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-desc
|
|
321
435
|
|
|
322
436
|
[@stdlib/ndarray/base/dtype-enum2str]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-enum2str
|
|
323
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
|
+
|
|
324
442
|
[@stdlib/ndarray/base/dtype-resolve-enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-resolve-enum
|
|
325
443
|
|
|
326
444
|
[@stdlib/ndarray/base/dtype-resolve-str]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-resolve-str
|
|
327
445
|
|
|
328
446
|
[@stdlib/ndarray/base/dtype-str2enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-str2enum
|
|
329
447
|
|
|
448
|
+
[@stdlib/ndarray/base/dtype-strings]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype-strings
|
|
449
|
+
|
|
330
450
|
[@stdlib/ndarray/base/dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype
|
|
331
451
|
|
|
332
452
|
[@stdlib/ndarray/base/dtype2c]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtype2c
|
|
333
453
|
|
|
454
|
+
[@stdlib/ndarray/base/dtypes2enums]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtypes2enums
|
|
455
|
+
|
|
334
456
|
[@stdlib/ndarray/base/dtypes2signatures]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtypes2signatures
|
|
335
457
|
|
|
458
|
+
[@stdlib/ndarray/base/dtypes2strings]: https://www.npmjs.com/package/@stdlib/ndarray-base-dtypes2strings
|
|
459
|
+
|
|
336
460
|
[@stdlib/ndarray/base/empty-like]: https://www.npmjs.com/package/@stdlib/ndarray-base-empty-like
|
|
337
461
|
|
|
338
462
|
[@stdlib/ndarray/base/empty]: https://www.npmjs.com/package/@stdlib/ndarray-base-empty
|
|
339
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
|
+
|
|
340
468
|
[@stdlib/ndarray/base/expand-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-expand-dimensions
|
|
341
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
|
+
|
|
342
476
|
[@stdlib/ndarray/base/flag]: https://www.npmjs.com/package/@stdlib/ndarray-base-flag
|
|
343
477
|
|
|
344
478
|
[@stdlib/ndarray/base/flags]: https://www.npmjs.com/package/@stdlib/ndarray-base-flags
|
|
345
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
|
+
|
|
346
484
|
[@stdlib/ndarray/base/fliplr]: https://www.npmjs.com/package/@stdlib/ndarray-base-fliplr
|
|
347
485
|
|
|
348
486
|
[@stdlib/ndarray/base/flipud]: https://www.npmjs.com/package/@stdlib/ndarray-base-flipud
|
|
349
487
|
|
|
350
488
|
[@stdlib/ndarray/base/for-each]: https://www.npmjs.com/package/@stdlib/ndarray-base-for-each
|
|
351
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
|
+
|
|
352
494
|
[@stdlib/ndarray/base/from-scalar]: https://www.npmjs.com/package/@stdlib/ndarray-base-from-scalar
|
|
353
495
|
|
|
496
|
+
[@stdlib/ndarray/base/includes]: https://www.npmjs.com/package/@stdlib/ndarray-base-includes
|
|
497
|
+
|
|
354
498
|
[@stdlib/ndarray/base/ind]: https://www.npmjs.com/package/@stdlib/ndarray-base-ind
|
|
355
499
|
|
|
356
500
|
[@stdlib/ndarray/base/ind2sub]: https://www.npmjs.com/package/@stdlib/ndarray-base-ind2sub
|
|
357
501
|
|
|
358
502
|
[@stdlib/ndarray/base/iteration-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-iteration-order
|
|
359
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
|
+
|
|
360
508
|
[@stdlib/ndarray/base/max-view-buffer-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-max-view-buffer-index
|
|
361
509
|
|
|
362
510
|
[@stdlib/ndarray/base/maybe-broadcast-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-maybe-broadcast-array
|
|
@@ -365,12 +513,20 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
365
513
|
|
|
366
514
|
[@stdlib/ndarray/base/meta-data-props]: https://www.npmjs.com/package/@stdlib/ndarray-base-meta-data-props
|
|
367
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
|
+
|
|
368
520
|
[@stdlib/ndarray/base/min-view-buffer-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-min-view-buffer-index
|
|
369
521
|
|
|
370
522
|
[@stdlib/ndarray/base/minmax-view-buffer-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-minmax-view-buffer-index
|
|
371
523
|
|
|
524
|
+
[@stdlib/ndarray/base/ndarraylike2ndarray]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndarraylike2ndarray
|
|
525
|
+
|
|
372
526
|
[@stdlib/ndarray/base/ndarraylike2object]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndarraylike2object
|
|
373
527
|
|
|
528
|
+
[@stdlib/ndarray/base/ndarraylike2scalar]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndarraylike2scalar
|
|
529
|
+
|
|
374
530
|
[@stdlib/ndarray/base/ndims]: https://www.npmjs.com/package/@stdlib/ndarray-base-ndims
|
|
375
531
|
|
|
376
532
|
[@stdlib/ndarray/base/next-cartesian-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-next-cartesian-index
|
|
@@ -379,8 +535,16 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
379
535
|
|
|
380
536
|
[@stdlib/ndarray/base/normalize-index]: https://www.npmjs.com/package/@stdlib/ndarray-base-normalize-index
|
|
381
537
|
|
|
538
|
+
[@stdlib/ndarray/base/normalize-indices]: https://www.npmjs.com/package/@stdlib/ndarray-base-normalize-indices
|
|
539
|
+
|
|
382
540
|
[@stdlib/ndarray/base/nullary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-loop-interchange-order
|
|
383
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
|
+
|
|
384
548
|
[@stdlib/ndarray/base/nullary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary-tiling-block-size
|
|
385
549
|
|
|
386
550
|
[@stdlib/ndarray/base/nullary]: https://www.npmjs.com/package/@stdlib/ndarray-base-nullary
|
|
@@ -393,6 +557,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
393
557
|
|
|
394
558
|
[@stdlib/ndarray/base/order]: https://www.npmjs.com/package/@stdlib/ndarray-base-order
|
|
395
559
|
|
|
560
|
+
[@stdlib/ndarray/base/output-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-dtype
|
|
561
|
+
|
|
396
562
|
[@stdlib/ndarray/base/output-policy-enum2str]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-policy-enum2str
|
|
397
563
|
|
|
398
564
|
[@stdlib/ndarray/base/output-policy-resolve-enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-policy-resolve-enum
|
|
@@ -401,8 +567,20 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
401
567
|
|
|
402
568
|
[@stdlib/ndarray/base/output-policy-str2enum]: https://www.npmjs.com/package/@stdlib/ndarray-base-output-policy-str2enum
|
|
403
569
|
|
|
570
|
+
[@stdlib/ndarray/base/pop]: https://www.npmjs.com/package/@stdlib/ndarray-base-pop
|
|
571
|
+
|
|
404
572
|
[@stdlib/ndarray/base/prepend-singleton-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-prepend-singleton-dimensions
|
|
405
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
|
+
|
|
406
584
|
[@stdlib/ndarray/base/remove-singleton-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-remove-singleton-dimensions
|
|
407
585
|
|
|
408
586
|
[@stdlib/ndarray/base/reverse-dimension]: https://www.npmjs.com/package/@stdlib/ndarray-base-reverse-dimension
|
|
@@ -415,6 +593,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
415
593
|
|
|
416
594
|
[@stdlib/ndarray/base/shape2strides]: https://www.npmjs.com/package/@stdlib/ndarray-base-shape2strides
|
|
417
595
|
|
|
596
|
+
[@stdlib/ndarray/base/shift]: https://www.npmjs.com/package/@stdlib/ndarray-base-shift
|
|
597
|
+
|
|
418
598
|
[@stdlib/ndarray/base/singleton-dimensions]: https://www.npmjs.com/package/@stdlib/ndarray-base-singleton-dimensions
|
|
419
599
|
|
|
420
600
|
[@stdlib/ndarray/base/slice-assign]: https://www.npmjs.com/package/@stdlib/ndarray-base-slice-assign
|
|
@@ -431,6 +611,12 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
431
611
|
|
|
432
612
|
[@stdlib/ndarray/base/slice]: https://www.npmjs.com/package/@stdlib/ndarray-base-slice
|
|
433
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
|
+
|
|
434
620
|
[@stdlib/ndarray/base/stride]: https://www.npmjs.com/package/@stdlib/ndarray-base-stride
|
|
435
621
|
|
|
436
622
|
[@stdlib/ndarray/base/strides]: https://www.npmjs.com/package/@stdlib/ndarray-base-strides
|
|
@@ -441,16 +627,68 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
441
627
|
|
|
442
628
|
[@stdlib/ndarray/base/sub2ind]: https://www.npmjs.com/package/@stdlib/ndarray-base-sub2ind
|
|
443
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
|
+
|
|
444
640
|
[@stdlib/ndarray/base/to-array]: https://www.npmjs.com/package/@stdlib/ndarray-base-to-array
|
|
445
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
|
+
|
|
446
654
|
[@stdlib/ndarray/base/transpose]: https://www.npmjs.com/package/@stdlib/ndarray-base-transpose
|
|
447
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
|
+
|
|
448
660
|
[@stdlib/ndarray/base/unary-by]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-by
|
|
449
661
|
|
|
662
|
+
[@stdlib/ndarray/base/unary-input-casting-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-input-casting-dtype
|
|
663
|
+
|
|
450
664
|
[@stdlib/ndarray/base/unary-loop-interchange-order]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-loop-interchange-order
|
|
451
665
|
|
|
452
666
|
[@stdlib/ndarray/base/unary-output-dtype]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-output-dtype
|
|
453
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
|
+
|
|
454
692
|
[@stdlib/ndarray/base/unary-tiling-block-size]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary-tiling-block-size
|
|
455
693
|
|
|
456
694
|
[@stdlib/ndarray/base/unary]: https://www.npmjs.com/package/@stdlib/ndarray-base-unary
|
|
@@ -463,6 +701,8 @@ Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
|
463
701
|
|
|
464
702
|
[@stdlib/ndarray/base/zeros]: https://www.npmjs.com/package/@stdlib/ndarray-base-zeros
|
|
465
703
|
|
|
704
|
+
[@stdlib/ndarray/base/zip2views1d]: https://www.npmjs.com/package/@stdlib/ndarray-base-zip2views1d
|
|
705
|
+
|
|
466
706
|
<!-- </toc-links> -->
|
|
467
707
|
|
|
468
708
|
</section>
|