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
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,7 @@ var o = ns;
150
150
- <spanclass="signature">[`loopOrder( shape, strides )`][@stdlib/ndarray/base/loop-interchange-order]</span><spanclass="delimiter">: </span><spanclass="description">reorder ndarray dimensions and associated strides for loop interchange.</span>
151
151
- <spanclass="signature">[`map( arrays, fcn[, thisArg] )`][@stdlib/ndarray/base/map]</span><spanclass="delimiter">: </span><spanclass="description">apply a callback function to elements in an input ndarray and assign results to elements in an output ndarray.</span>
152
152
- <spanclass="signature">[`maxViewBufferIndex( shape, strides, offset )`][@stdlib/ndarray/base/max-view-buffer-index]</span><spanclass="delimiter">: </span><spanclass="description">compute the maximum linear index in an underlying data buffer accessible to an array view.</span>
153
+
- <spanclass="signature">[`maybeBroadcastArrayExceptDimensions( arr, shape, dims )`][@stdlib/ndarray/base/maybe-broadcast-array-except-dimensions]</span><spanclass="delimiter">: </span><spanclass="description">broadcast an ndarray to a specified shape while keeping a list of specified dimensions unchanged if and only if the specified shape differs from the provided ndarray's shape.</span>
153
154
- <spanclass="signature">[`maybeBroadcastArray( arr, shape )`][@stdlib/ndarray/base/maybe-broadcast-array]</span><spanclass="delimiter">: </span><spanclass="description">broadcast an ndarray to a specified shape if and only if the specified shape differs from the provided ndarray's shape.</span>
154
155
- <spanclass="signature">[`maybeBroadcastArrays( arrays )`][@stdlib/ndarray/base/maybe-broadcast-arrays]</span><spanclass="delimiter">: </span><spanclass="description">broadcast ndarrays to a common shape.</span>
155
156
- <spanclass="signature">[`metaDataProps( meta, dtypes, obj )`][@stdlib/ndarray/base/meta-data-props]</span><spanclass="delimiter">: </span><spanclass="description">define non-enumerable read-only properties which expose ndarray function meta data.</span>
@@ -223,7 +224,7 @@ var o = ns;
223
224
- <spanclass="signature">[`toReversed( x )`][@stdlib/ndarray/base/to-reversed]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray where the order of elements of an input ndarray is reversed along each dimension.</span>
224
225
- <spanclass="signature">[`toTransposed( x )`][@stdlib/ndarray/base/to-transposed]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray containing the elements of an input ndarray but whose last two dimensions are transposed.</span>
225
226
- <spanclass="signature">[`toUniqueNormalizedIndices( indices, max )`][@stdlib/ndarray/base/to-unique-normalized-indices]</span><spanclass="delimiter">: </span><spanclass="description">return a list of unique indices after normalizing to the interval `[0,max]`.</span>
226
-
- <spanclass="signature">[`transpose( x )`][@stdlib/ndarray/base/transpose]</span><spanclass="delimiter">: </span><spanclass="description">transpose a matrix (or a stack of matrices).</span>
227
+
- <spanclass="signature">[`transpose( x, writable )`][@stdlib/ndarray/base/transpose]</span><spanclass="delimiter">: </span><spanclass="description">transpose a matrix (or a stack of matrices).</span>
227
228
- <spanclass="signature">[`unaryAccumulate( arrays, initial, clbk )`][@stdlib/ndarray/base/unary-accumulate]</span><spanclass="delimiter">: </span><spanclass="description">perform a reduction over elements in an input ndarray.</span>
228
229
- <spanclass="signature">[`unaryAddonDispatch( addon, fallback )`][@stdlib/ndarray/base/unary-addon-dispatch]</span><spanclass="delimiter">: </span><spanclass="description">dispatch to a native add-on applying a unary function to an input ndarray.</span>
229
230
- <spanclass="signature">[`unaryBy( arrays, fcn, clbk[, thisArg] )`][@stdlib/ndarray/base/unary-by]</span><spanclass="delimiter">: </span><spanclass="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>
0 commit comments