You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- [`a0169bc`](https://github.com/stdlib-js/stdlib/commit/a0169bcfc0d05ac94c206ac5d6d0a898ec304463) - **docs:** remove unused `ndarray2array` requires from README usage examples [(#11194)](https://github.com/stdlib-js/stdlib/pull/11194) _(by Philipp Burckhardt)_
821
822
- [`3bf34ec`](https://github.com/stdlib-js/stdlib/commit/3bf34ec6df7f894f7cbee125eb3f655ebb2d6a4e) - **chore:** fix typos, grammar, and minor issues across multiple packages [(#11167)](https://github.com/stdlib-js/stdlib/pull/11167) _(by Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -162,6 +162,7 @@ In addition, the namespace contains the following multidimensional array utility
162
162
- <spanclass="signature">[`numelDimension( x, dim )`][@stdlib/ndarray/numel-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return the size (i.e., number of elements) of a specified dimension for a provided ndarray.</span>
163
163
- <spanclass="signature">[`numel( x )`][@stdlib/ndarray/numel]</span><spanclass="delimiter">: </span><spanclass="description">return the number of elements in an ndarray.</span>
164
164
- <spanclass="signature">[`offset( x )`][@stdlib/ndarray/offset]</span><spanclass="delimiter">: </span><spanclass="description">return the index offset specifying the underlying buffer index of the first iterated ndarray element.</span>
165
+
- <spanclass="signature">[`ones( shape[, options] )`][@stdlib/ndarray/ones]</span><spanclass="delimiter">: </span><spanclass="description">create a ones-filled ndarray having a specified shape and data type.</span>
165
166
- <spanclass="signature">[`order( x )`][@stdlib/ndarray/order]</span><spanclass="delimiter">: </span><spanclass="description">return the layout order of a provided ndarray.</span>
166
167
- <spanclass="signature">[`orders()`][@stdlib/ndarray/orders]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray orders.</span>
167
168
- <spanclass="signature">[`outputDataTypePolicies()`][@stdlib/ndarray/output-dtype-policies]</span><spanclass="delimiter">: </span><spanclass="description">list of output ndarray data type policies.</span>
Copy file name to clipboardExpand all lines: base/README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,6 +127,7 @@ var o = ns;
127
127
- <spanclass="signature">[`minUnsignedIntegerDataType( value )`][@stdlib/ndarray/base/min-unsigned-integer-dtype]</span><spanclass="delimiter">: </span><spanclass="description">determine the minimum ndarray data type for storing a provided unsigned integer value.</span>
128
128
- <spanclass="signature">[`minViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/min-view-buffer-index]</span><spanclass="delimiter">: </span><spanclass="description">compute the minimum linear index in an underlying data buffer accessible to an array view.</span>
129
129
- <spanclass="signature">[`minmaxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/minmax-view-buffer-index]</span><spanclass="delimiter">: </span><spanclass="description">compute the minimum and maximum linear indices in an underlying data buffer which are accessible to an array view.</span>
130
+
- <spanclass="signature">[`nans( dtype, shape, order )`][@stdlib/ndarray/base/nans]</span><spanclass="delimiter">: </span><spanclass="description">create a NaN-filled ndarray having a specified shape and data type.</span>
130
131
- <spanclass="signature">[`ndarraylike2ndarray( x )`][@stdlib/ndarray/base/ndarraylike2ndarray]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray-like object to an `ndarray`.</span>
131
132
- <spanclass="signature">[`ndarraylike2object( x )`][@stdlib/ndarray/base/ndarraylike2object]</span><spanclass="delimiter">: </span><spanclass="description">convert an `ndarray`-like object to an object likely to have the same "shape".</span>
132
133
- <spanclass="signature">[`ndarraylike2scalar( x )`][@stdlib/ndarray/base/ndarraylike2scalar]</span><spanclass="delimiter">: </span><spanclass="description">convert an ndarray-like object to a scalar value.</span>
@@ -141,9 +142,12 @@ var o = ns;
141
142
- <spanclass="signature">[`nullaryStrided1d( fcn, arrays, dims[, options] )`][@stdlib/ndarray/base/nullary-strided1d]</span><spanclass="delimiter">: </span><spanclass="description">apply a one-dimensional strided array function to a list of specified dimensions in an ndarray.</span>
142
143
- <spanclass="signature">[`nullaryBlockSize( dtypeX )`][@stdlib/ndarray/base/nullary-tiling-block-size]</span><spanclass="delimiter">: </span><spanclass="description">resolve a loop block size for multi-dimensional array tiled loops.</span>
143
144
- <spanclass="signature">[`nullary( arrays, fcn )`][@stdlib/ndarray/base/nullary]</span><spanclass="delimiter">: </span><spanclass="description">apply a nullary callback and assign results to elements in an output ndarray.</span>
145
+
- <spanclass="signature">[`nulls( dtype, shape, order )`][@stdlib/ndarray/base/nulls]</span><spanclass="delimiter">: </span><spanclass="description">create a null-filled ndarray having a specified shape and data type.</span>
144
146
- <spanclass="signature">[`numelDimension( x, dim )`][@stdlib/ndarray/base/numel-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return the size (i.e., number of elements) of a specified dimension for a provided ndarray.</span>
145
147
- <spanclass="signature">[`numel( shape )`][@stdlib/ndarray/base/numel]</span><spanclass="delimiter">: </span><spanclass="description">return the number of elements in an array.</span>
146
148
- <spanclass="signature">[`offset( x )`][@stdlib/ndarray/base/offset]</span><spanclass="delimiter">: </span><spanclass="description">return the index offset specifying the underlying buffer index of the first iterated ndarray element.</span>
149
+
- <spanclass="signature">[`onesLike( x )`][@stdlib/ndarray/base/ones-like]</span><spanclass="delimiter">: </span><spanclass="description">create a ones-filled ndarray having the same shape and data type as a provided ndarray.</span>
150
+
- <spanclass="signature">[`ones( dtype, shape, order )`][@stdlib/ndarray/base/ones]</span><spanclass="delimiter">: </span><spanclass="description">create a ones-filled ndarray having a specified shape and data type.</span>
147
151
- <spanclass="signature">[`order( x )`][@stdlib/ndarray/base/order]</span><spanclass="delimiter">: </span><spanclass="description">return the layout order of a provided ndarray.</span>
148
152
- <spanclass="signature">[`outputDataType( dtypes, policy )`][@stdlib/ndarray/base/output-dtype]</span><spanclass="delimiter">: </span><spanclass="description">resolve the output ndarray data type from a list of input ndarray data types.</span>
149
153
- <spanclass="signature">[`outputPolicyEnum2Str( policy )`][@stdlib/ndarray/base/output-policy-enum2str]</span><spanclass="delimiter">: </span><spanclass="description">return the policy string associated with an output ndarray data type policy enumeration constant.</span>
0 commit comments