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/blas/ext/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
@@ -60,6 +60,7 @@ The namespace contains the following:
60
60
- <spanclass="signature">[`sum( x[, options] )`][@stdlib/blas/ext/sum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum along one or more ndarray dimensions.</span>
61
61
- <spanclass="signature">[`toSorted( x[, sortOrder][, options] )`][@stdlib/blas/ext/to-sorted]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray containing the elements of an input ndarray sorted along one or more ndarray dimensions.</span>
62
62
- <spanclass="signature">[`toSortedhp( x[, sortOrder][, options] )`][@stdlib/blas/ext/to-sortedhp]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray containing the elements of an input ndarray sorted along one or more ndarray dimensions using heapsort.</span>
63
+
- <spanclass="signature">[`unitspace( shape, start[, options] )`][@stdlib/blas/ext/unitspace]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray filled with linearly spaced numeric elements which increment by `1` starting from a specified value along one or more ndarray dimensions.</span>
63
64
- <spanclass="signature">[`zeroTo( shape[, options] )`][@stdlib/blas/ext/zero-to]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray filled with linearly spaced numeric elements which increment by `1` starting from zero along one or more ndarray dimensions.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/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
@@ -57,6 +57,7 @@ var o = ns;
57
57
- <spanclass="signature">[`dapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each double-precision floating-point strided array element and compute the sum using ordinary recursive summation.</span>
58
58
- <spanclass="signature">[`dapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/dapxsumpw]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each double-precision floating-point strided array element and compute the sum using pairwise summation.</span>
59
59
- <spanclass="signature">[`dasumpw( N, x, strideX )`][@stdlib/blas/ext/base/dasumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values (_L1_ norm) of double-precision floating-point strided array elements using pairwise summation.</span>
60
+
- <spanclass="signature">[`dcartesianSquare( order, N, x, strideX, out, LDO )`][@stdlib/blas/ext/base/dcartesian-square]</span><spanclass="delimiter">: </span><spanclass="description">compute the Cartesian square for a double-precision floating-point strided array.</span>
60
61
- <spanclass="signature">[`dcircshift( N, k, x, strideX )`][@stdlib/blas/ext/base/dcircshift]</span><spanclass="delimiter">: </span><spanclass="description">circularly shift the elements of a double-precision floating-point strided array by a specified number of positions.</span>
61
62
- <spanclass="signature">[`dcusum( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of double-precision floating-point strided array elements.</span>
62
63
- <spanclass="signature">[`dcusumkbn( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/dcusumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of double-precision floating-point strided array elements using an improved Kahan–Babuška algorithm.</span>
@@ -127,6 +128,7 @@ var o = ns;
127
128
- <spanclass="signature">[`gcusumkbn2( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
128
129
- <spanclass="signature">[`gcusumors( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of strided array elements using ordinary recursive summation.</span>
129
130
- <spanclass="signature">[`gcusumpw( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of strided array elements using pairwise summation.</span>
131
+
- <spanclass="signature">[`gdiff( N, k, x, strideX, N1, prepend, strideP, N2, append, strideA, out, strideOut, workspace, strideW )`][@stdlib/blas/ext/base/gdiff]</span><spanclass="delimiter">: </span><spanclass="description">calculate the k-th discrete forward difference of a strided array.</span>
130
132
- <spanclass="signature">[`gfillBy( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfill-by]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array according to a provided callback function.</span>
131
133
- <spanclass="signature">[`gfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with a specified scalar constant.</span>
132
134
- <spanclass="signature">[`gfindIndex( N, x, strideX, clbk[, thisArg] )`][@stdlib/blas/ext/base/gfind-index]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the first element which passes a test implemented by a predicate function.</span>
@@ -213,6 +215,7 @@ var o = ns;
213
215
- <spanclass="signature">[`ssumpw( N, x, strideX )`][@stdlib/blas/ext/base/ssumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using pairwise summation.</span>
214
216
- <spanclass="signature">[`sunitspace( N, start, x, strideX )`][@stdlib/blas/ext/base/sunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a single-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
215
217
- <spanclass="signature">[`svander( order, mode, M, N, x, strideX, out, ldo )`][@stdlib/blas/ext/base/svander]</span><spanclass="delimiter">: </span><spanclass="description">generate a single-precision floating-point Vandermonde matrix.</span>
218
+
- <spanclass="signature">[`swhere( N, condition, strideC, x, strideX, y, strideY, out, strideOut )`][@stdlib/blas/ext/base/swhere]</span><spanclass="delimiter">: </span><spanclass="description">take elements from one of two single-precision floating-point strided arrays depending on a condition.</span>
216
219
- <spanclass="signature">[`szeroTo( N, x, strideX )`][@stdlib/blas/ext/base/szero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a single-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.</span>
217
220
- <spanclass="signature">[`wasm`][@stdlib/blas/ext/base/wasm]</span><spanclass="delimiter">: </span><spanclass="description">extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly.</span>
218
221
- <spanclass="signature">[`zfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a double-precision complex floating-point strided array with a specified scalar constant.</span>
0 commit comments