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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/ndarray/README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,7 @@ The namespace exposes the following APIs:
48
48
- <spanclass="signature">[`coneTo( arrays )`][@stdlib/blas/ext/base/ndarray/cone-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.</span>
49
49
- <spanclass="signature">[`csum( arrays )`][@stdlib/blas/ext/base/ndarray/csum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision complex floating-point ndarray.</span>
50
50
- <spanclass="signature">[`csumkbn( arrays )`][@stdlib/blas/ext/base/ndarray/csumkbn]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision complex floating-point ndarray using an improved Kahan–Babuška algorithm.</span>
51
+
- <spanclass="signature">[`cunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/cunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
51
52
- <spanclass="signature">[`czeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/czero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
52
53
- <spanclass="signature">[`dcircshift( arrays )`][@stdlib/blas/ext/base/ndarray/dcircshift]</span><spanclass="delimiter">: </span><spanclass="description">circularly shift the elements of a one-dimensional double-precision floating-point ndarray by a specified number of positions.</span>
53
54
- <spanclass="signature">[`dcusum( arrays )`][@stdlib/blas/ext/base/ndarray/dcusum]</span><spanclass="delimiter">: </span><spanclass="description">compute the cumulative sum of a one-dimensional double-precision floating-point ndarray.</span>
@@ -73,6 +74,7 @@ The namespace exposes the following APIs:
73
74
- <spanclass="signature">[`dsumkbn2( arrays )`][@stdlib/blas/ext/base/ndarray/dsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional double-precision floating-point ndarray using a second-order iterative Kahan–Babuška algorithm.</span>
74
75
- <spanclass="signature">[`dsumors( arrays )`][@stdlib/blas/ext/base/ndarray/dsumors]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional double-precision floating-point ndarray using ordinary recursive summation.</span>
75
76
- <spanclass="signature">[`dsumpw( arrays )`][@stdlib/blas/ext/base/ndarray/dsumpw]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional double-precision floating-point ndarray using pairwise summation.</span>
77
+
- <spanclass="signature">[`dunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/dunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
76
78
- <spanclass="signature">[`dzeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/dzero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
77
79
- <spanclass="signature">[`gcircshift( arrays )`][@stdlib/blas/ext/base/ndarray/gcircshift]</span><spanclass="delimiter">: </span><spanclass="description">circularly shift the elements of a one-dimensional ndarray by a specified number of positions.</span>
78
80
- <spanclass="signature">[`gcusum( arrays )`][@stdlib/blas/ext/base/ndarray/gcusum]</span><spanclass="delimiter">: </span><spanclass="description">compute the cumulative sum of a one-dimensional ndarray.</span>
@@ -123,10 +125,12 @@ The namespace exposes the following APIs:
123
125
- <spanclass="signature">[`ssumkbn2( arrays )`][@stdlib/blas/ext/base/ndarray/ssumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision floating-point ndarray using a second-order iterative Kahan–Babuška algorithm.</span>
124
126
- <spanclass="signature">[`ssumors( arrays )`][@stdlib/blas/ext/base/ndarray/ssumors]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional single-precision floating-point ndarray using ordinary recursive summation.</span>
125
127
- <spanclass="signature">[`ssumpw( arrays )`][@stdlib/blas/ext/base/ndarray/ssumpw]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision floating-point ndarray using pairwise summation.</span>
128
+
- <spanclass="signature">[`sunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/sunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
126
129
- <spanclass="signature">[`szeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/szero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
127
130
- <spanclass="signature">[`zoneTo( arrays )`][@stdlib/blas/ext/base/ndarray/zone-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.</span>
128
131
- <spanclass="signature">[`zsum( arrays )`][@stdlib/blas/ext/base/ndarray/zsum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional double-precision complex floating-point ndarray.</span>
129
132
- <spanclass="signature">[`zsumkbn( arrays )`][@stdlib/blas/ext/base/ndarray/zsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional double-precision complex floating-point ndarray using an improved Kahan–Babuška algorithm.</span>
133
+
- <spanclass="signature">[`zunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/zunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
130
134
- <spanclass="signature">[`zzeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/zzero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
0 commit comments