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: base/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
@@ -117,6 +117,7 @@ var o = ns;
117
117
- <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>
118
118
- <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>
119
119
- <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>
120
+
- <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>
120
121
- <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>
121
122
- <spanclass="signature">[`maybeBroadcastArrays( arrays )`][@stdlib/ndarray/base/maybe-broadcast-arrays]</span><spanclass="delimiter">: </span><spanclass="description">broadcast ndarrays to a common shape.</span>
122
123
- <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>
@@ -190,7 +191,7 @@ var o = ns;
190
191
- <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>
191
192
- <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>
192
193
- <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>
193
-
- <spanclass="signature">[`transpose( x )`][@stdlib/ndarray/base/transpose]</span><spanclass="delimiter">: </span><spanclass="description">transpose a matrix (or a stack of matrices).</span>
194
+
- <spanclass="signature">[`transpose( x, writable )`][@stdlib/ndarray/base/transpose]</span><spanclass="delimiter">: </span><spanclass="description">transpose a matrix (or a stack of matrices).</span>
194
195
- <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>
195
196
- <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>
196
197
- <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