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: lib/node_modules/@stdlib/array/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
@@ -191,6 +191,7 @@ Lastly, the namespace contains various other functions for dealing with arrays,
191
191
- <spanclass="signature">[`nansLike( x[, dtype] )`][@stdlib/array/nans-like]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with NaNs and having the same length and data type as a provided array.</span>
192
192
- <spanclass="signature">[`nans( length[, dtype] )`][@stdlib/array/nans]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with NaNs and having a specified length.</span>
193
193
- <spanclass="signature">[`nextDataType( [dtype] )`][@stdlib/array/next-dtype]</span><spanclass="delimiter">: </span><spanclass="description">return the next larger array data type of the same kind.</span>
194
+
- <spanclass="signature">[`nulls( length[, dtype] )`][@stdlib/array/nulls]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with nulls and having a specified length.</span>
194
195
- <spanclass="signature">[`oneToLike( x[, dtype] )`][@stdlib/array/one-to-like]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one and having the same length and data type as a provided input array.</span>
195
196
- <spanclass="signature">[`oneTo( n[, dtype] )`][@stdlib/array/one-to]</span><spanclass="delimiter">: </span><spanclass="description">generate a linearly spaced numeric array whose elements increment by `1` starting from one.</span>
196
197
- <spanclass="signature">[`onesLike( x[, dtype] )`][@stdlib/array/ones-like]</span><spanclass="delimiter">: </span><spanclass="description">create an array filled with ones and having the same length and data type as a provided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/array/base/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,7 @@ The namespace exports the following:
124
124
- <spanclass="signature">[`everyByRight( x, predicate[, thisArg] )`][@stdlib/array/base/every-by-right]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array pass a test implemented by a predicate function, iterating from right to left.</span>
125
125
- <spanclass="signature">[`everyBy( x, predicate[, thisArg] )`][@stdlib/array/base/every-by]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array pass a test implemented by a predicate function.</span>
126
126
- <spanclass="signature">[`every( x )`][@stdlib/array/base/every]</span><spanclass="delimiter">: </span><spanclass="description">test whether all elements in an array are truthy.</span>
127
+
- <spanclass="signature">[`falses( len )`][@stdlib/array/base/falses]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with `false` values.</span>
127
128
- <spanclass="signature">[`fancySliceAssign( x, y, s, strict )`][@stdlib/array/base/fancy-slice-assign]</span><spanclass="delimiter">: </span><spanclass="description">assign element values from a broadcasted input array to corresponding elements in an output array.</span>
128
129
- <spanclass="signature">[`fancySlice( x, s, strict )`][@stdlib/array/base/fancy-slice]</span><spanclass="delimiter">: </span><spanclass="description">return a shallow copy of a portion of an array.</span>
129
130
- <spanclass="signature">[`fillBy( x, start, end, fcn[, thisArg] )`][@stdlib/array/base/fill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill all elements within a portion of an array according to a callback function.</span>
@@ -260,6 +261,7 @@ The namespace exports the following:
260
261
- <spanclass="signature">[`toDeduped( x, limit, equalNaNs )`][@stdlib/array/base/to-deduped]</span><spanclass="delimiter">: </span><spanclass="description">copy elements to a new "generic" array after removing consecutive duplicated values.</span>
261
262
- <spanclass="signature">[`toInsertedAt( x, index, value )`][@stdlib/array/base/to-inserted-at]</span><spanclass="delimiter">: </span><spanclass="description">return a new array containing every element from an input array and with a provided value inserted at a specified index.</span>
262
263
- <spanclass="signature">[`toReversed( x )`][@stdlib/array/base/to-reversed]</span><spanclass="delimiter">: </span><spanclass="description">return a new array with elements in reverse order.</span>
264
+
- <spanclass="signature">[`trues( len )`][@stdlib/array/base/trues]</span><spanclass="delimiter">: </span><spanclass="description">create a "generic" array filled with `true` values.</span>
263
265
- <spanclass="signature">[`unary2dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary2d-by]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary function to each element retrieved from a two-dimensional nested input array according to a callback function and assign results to elements in a two-dimensional nested output array.</span>
264
266
- <spanclass="signature">[`unary2d( arrays, shape, fcn )`][@stdlib/array/base/unary2d]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary callback to elements in a two-dimensional nested input array and assign results to elements in a two-dimensional nested output array.</span>
265
267
- <spanclass="signature">[`unary3dBy( arrays, shape, fcn, clbk[, thisArg] )`][@stdlib/array/base/unary3d-by]</span><spanclass="delimiter">: </span><spanclass="description">apply a unary function to each element retrieved from a three-dimensional nested input array according to a callback function and assign results to elements in a three-dimensional nested output array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/base/ndarray/README.md
+13Lines changed: 13 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,11 @@ The namespace exposes the following APIs:
45
45
46
46
<divclass="namespace-toc">
47
47
48
+
- <spanclass="signature">[`dasum( arrays )`][@stdlib/blas/base/ndarray/dasum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values for all elements in a one-dimensional double-precision floating-point ndarray.</span>
49
+
- <spanclass="signature">[`ddot( arrays )`][@stdlib/blas/base/ndarray/ddot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional double-precision floating-point ndarrays.</span>
50
+
- <spanclass="signature">[`gdot( arrays )`][@stdlib/blas/base/ndarray/gdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional ndarrays.</span>
51
+
- <spanclass="signature">[`sdot( arrays )`][@stdlib/blas/base/ndarray/sdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional single-precision floating-point ndarrays.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/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
@@ -150,6 +150,7 @@ var o = ns;
150
150
- <spanclass="signature">[`gsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
151
151
- <spanclass="signature">[`gsumors( N, x, strideX )`][@stdlib/blas/ext/base/gsumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using ordinary recursive summation.</span>
152
152
- <spanclass="signature">[`gsumpw( N, x, strideX )`][@stdlib/blas/ext/base/gsumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using pairwise summation.</span>
153
+
- <spanclass="signature">[`gzeroTo( N, x, strideX )`][@stdlib/blas/ext/base/gzero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with linearly spaced numeric elements which increment by `1` starting from zero.</span>
- <spanclass="signature">[`sapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapx]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each element in a single-precision floating-point strided array.</span>
155
156
- <spanclass="signature">[`sapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum.</span>
0 commit comments