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
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,7 @@ var o = ns;
114
114
- <spanclass="signature">[`countTruthy( arrays )`][@stdlib/ndarray/base/count-truthy]</span><spanclass="delimiter">: </span><spanclass="description">count the number of truthy elements in an ndarray.</span>
115
115
- <spanclass="signature">[`ndarray( dtype, buffer, shape, strides, offset, order )`][@stdlib/ndarray/base/ctor]</span><spanclass="delimiter">: </span><spanclass="description">create a multidimensional array.</span>
116
116
- <spanclass="signature">[`data( x )`][@stdlib/ndarray/base/data-buffer]</span><spanclass="delimiter">: </span><spanclass="description">return the underlying data buffer of a provided ndarray.</span>
117
+
- <spanclass="signature">[`diagonal( x, dims, k, writable )`][@stdlib/ndarray/base/diagonal]</span><spanclass="delimiter">: </span><spanclass="description">return a view of the diagonal of a matrix (or stack of matrices).</span>
117
118
- <spanclass="signature">[`dtypeAlignment( [dtype] )`][@stdlib/ndarray/base/dtype-alignment]</span><spanclass="delimiter">: </span><spanclass="description">return the alignment (in bytes) for an underlying array data type.</span>
118
119
- <spanclass="signature">[`dtypeChar( [dtype] )`][@stdlib/ndarray/base/dtype-char]</span><spanclass="delimiter">: </span><spanclass="description">return the single letter abbreviation for an underlying array data type.</span>
119
120
- <spanclass="signature">[`dtypeChars( [kind] )`][@stdlib/ndarray/base/dtype-chars]</span><spanclass="delimiter">: </span><spanclass="description">list of ndarray data type single letter character abbreviations.</span>
@@ -137,6 +138,7 @@ var o = ns;
137
138
- <spanclass="signature">[`expandDimensions( x, dim, writable )`][@stdlib/ndarray/base/expand-dimensions]</span><spanclass="delimiter">: </span><spanclass="description">expand the shape of an array by inserting a new dimension of size one at a specified dimension index.</span>
138
139
- <spanclass="signature">[`falses( dtype, shape, order )`][@stdlib/ndarray/base/falses]</span><spanclass="delimiter">: </span><spanclass="description">create an ndarray filled with `false` values and having a specified shape and data type.</span>
139
140
- <spanclass="signature">[`fillBy( x, fcn[, thisArg] )`][@stdlib/ndarray/base/fill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill an input ndarray according to a callback function.</span>
141
+
- <spanclass="signature">[`fillDiagonal( x, value, dims, k )`][@stdlib/ndarray/base/fill-diagonal]</span><spanclass="delimiter">: </span><spanclass="description">fill a specified diagonal of a matrix (or stack of matrices) with a scalar value.</span>
140
142
- <spanclass="signature">[`fill( x, value )`][@stdlib/ndarray/base/fill]</span><spanclass="delimiter">: </span><spanclass="description">fill an input ndarray with a specified value.</span>
141
143
- <spanclass="signature">[`find( arrays, predicate[, thisArg] )`][@stdlib/ndarray/base/find]</span><spanclass="delimiter">: </span><spanclass="description">return the first element in an ndarray which passes a test implemented by a predicate function.</span>
142
144
- <spanclass="signature">[`flag( x, name )`][@stdlib/ndarray/base/flag]</span><spanclass="delimiter">: </span><spanclass="description">return a specified flag for a provided ndarray.</span>
@@ -206,6 +208,7 @@ var o = ns;
206
208
- <spanclass="signature">[`reinterpretComplex64( x )`][@stdlib/ndarray/base/reinterpret-complex64]</span><spanclass="delimiter">: </span><spanclass="description">reinterpret a single-precision complex floating-point ndarray as a real-valued single-precision floating-point ndarray containing interleaved real and imaginary components.</span>
- <spanclass="signature">[`reverseDimension( x, dim, writable )`][@stdlib/ndarray/base/reverse-dimension]</span><spanclass="delimiter">: </span><spanclass="description">return a view of an input ndarray in which the order of elements along a specified dimension is reversed.</span>
211
+
- <spanclass="signature">[`reverseDimensions( x, dims, writable )`][@stdlib/ndarray/base/reverse-dimensions]</span><spanclass="delimiter">: </span><spanclass="description">return a view of an input ndarray in which the order of elements along specified dimensions is reversed.</span>
209
212
- <spanclass="signature">[`reverse( x, writable )`][@stdlib/ndarray/base/reverse]</span><spanclass="delimiter">: </span><spanclass="description">return a view of an input ndarray in which the order of elements along each dimension is reversed.</span>
210
213
- <spanclass="signature">[`rot180( x, dims, writable )`][@stdlib/ndarray/base/rot180]</span><spanclass="delimiter">: </span><spanclass="description">rotate an ndarray 180 degrees in a specified plane.</span>
211
214
- <spanclass="signature">[`rot90( x, dims, k, writable )`][@stdlib/ndarray/base/rot90]</span><spanclass="delimiter">: </span><spanclass="description">rotate an ndarray 90 degrees in a specified plane.</span>
0 commit comments