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/base/README.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,20 +89,20 @@ var ns = extblas;
89
89
- <spanclass="signature">[`dsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/dsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of double-precision floating-point strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
90
90
- <spanclass="signature">[`dsumors( N, x, strideX )`][@stdlib/blas/ext/base/dsumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of double-precision floating-point strided array elements using ordinary recursive summation.</span>
91
91
- <spanclass="signature">[`dsumpw( N, x, strideX )`][@stdlib/blas/ext/base/dsumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of double-precision floating-point strided array elements using pairwise summation.</span>
92
-
- <spanclass="signature">[`gapx( N, alpha, x, stride )`][@stdlib/blas/ext/base/gapx]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each element in a strided array.</span>
93
-
- <spanclass="signature">[`gapxsum( N, alpha, x, stride )`][@stdlib/blas/ext/base/gapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each strided array element and compute the sum.</span>
92
+
- <spanclass="signature">[`gapx( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapx]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each element in a strided array.</span>
93
+
- <spanclass="signature">[`gapxsum( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum.</span>
94
94
- <spanclass="signature">[`gapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
95
-
- <spanclass="signature">[`gapxsumkbn2( N, alpha, x, stride )`][@stdlib/blas/ext/base/gapxsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm.</span>
96
-
- <spanclass="signature">[`gapxsumors( N, alpha, x, stride )`][@stdlib/blas/ext/base/gapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each strided array element and compute the sum using ordinary recursive summation.</span>
97
-
- <spanclass="signature">[`gapxsumpw( N, alpha, x, stride )`][@stdlib/blas/ext/base/gapxsumpw]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each strided array element and compute the sum using pairwise summation.</span>
98
-
- <spanclass="signature">[`gasumpw( N, x, stride )`][@stdlib/blas/ext/base/gasumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values (_L1_ norm) of strided array elements using pairwise summation.</span>
95
+
- <spanclass="signature">[`gapxsumkbn2( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm.</span>
96
+
- <spanclass="signature">[`gapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum using ordinary recursive summation.</span>
97
+
- <spanclass="signature">[`gapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/gapxsumpw]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each strided array element and compute the sum using pairwise summation.</span>
98
+
- <spanclass="signature">[`gasumpw( N, x, strideX )`][@stdlib/blas/ext/base/gasumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values (_L1_ norm) of strided array elements using pairwise summation.</span>
99
99
- <spanclass="signature">[`gcusum( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of strided array elements.</span>
100
100
- <spanclass="signature">[`gcusumkbn( N, sum, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gcusumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative sum of strided array elements using an improved Kahan–Babuška algorithm.</span>
101
101
- <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>
102
102
- <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>
103
103
- <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>
104
-
- <spanclass="signature">[`gfillBy( N, x, stride, 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>
105
-
- <spanclass="signature">[`gfill( N, alpha, x, stride )`][@stdlib/blas/ext/base/gfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with a specified scalar constant.</span>
104
+
- <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>
105
+
- <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>
106
106
- <spanclass="signature">[`gnannsumkbn( N, x, strideX, out, strideOut )`][@stdlib/blas/ext/base/gnannsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm.</span>
107
107
- <spanclass="signature">[`gnansum( N, x, strideX )`][@stdlib/blas/ext/base/gnansum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements, ignoring `NaN` values.</span>
108
108
- <spanclass="signature">[`gnansumkbn( N, x, strideX )`][@stdlib/blas/ext/base/gnansumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements, ignoring `NaN` values and using an improved Kahan–Babuška algorithm.</span>
@@ -117,13 +117,13 @@ var ns = extblas;
117
117
- <spanclass="signature">[`gsortins( N, order, x, stride )`][@stdlib/blas/ext/base/gsortins]</span><spanclass="delimiter">: </span><spanclass="description">sort a strided array using insertion sort.</span>
118
118
- <spanclass="signature">[`gsortsh( N, order, x, stride )`][@stdlib/blas/ext/base/gsortsh]</span><spanclass="delimiter">: </span><spanclass="description">sort a strided array using Shellsort.</span>
119
119
- <spanclass="signature">[`gsum( N, x, stride )`][@stdlib/blas/ext/base/gsum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements.</span>
120
-
- <spanclass="signature">[`gsumkbn( N, x, stride )`][@stdlib/blas/ext/base/gsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using an improved Kahan–Babuška algorithm.</span>
120
+
- <spanclass="signature">[`gsumkbn( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using an improved Kahan–Babuška algorithm.</span>
121
121
- <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>
122
122
- <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>
123
123
- <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>
124
124
- <spanclass="signature">[`sapx( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapx]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each element in a single-precision floating-point strided array.</span>
125
125
- <spanclass="signature">[`sapxsum( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsum]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum.</span>
126
-
- <spanclass="signature">[`sapxsumkbn( N, alpha, x, stride )`][@stdlib/blas/ext/base/sapxsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">add a constant to each single-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
126
+
- <spanclass="signature">[`sapxsumkbn( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using an improved Kahan–Babuška algorithm.</span>
127
127
- <spanclass="signature">[`sapxsumkbn2( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using a second-order iterative Kahan–Babuška algorithm.</span>
128
128
- <spanclass="signature">[`sapxsumors( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumors]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using ordinary recursive summation.</span>
129
129
- <spanclass="signature">[`sapxsumpw( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sapxsumpw]</span><spanclass="delimiter">: </span><spanclass="description">add a scalar constant to each single-precision floating-point strided array element and compute the sum using pairwise summation.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,6 @@ The namespace contains the following statistical functions:
65
65
- <spanclass="signature">[`dcumaxabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/dcumaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative maximum absolute value of double-precision floating-point strided array elements.</span>
66
66
- <spanclass="signature">[`dcumin( N, x, strideX, y, strideY )`][@stdlib/stats/base/dcumin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative minimum of double-precision floating-point strided array elements.</span>
67
67
- <spanclass="signature">[`dcuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/dcuminabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative minimum absolute value of double-precision floating-point strided array elements.</span>
68
-
- <spanclass="signature">[`dmax( N, x, strideX )`][@stdlib/stats/strided/dmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array.</span>
69
68
- <spanclass="signature">[`dmaxabs( N, x, strideX )`][@stdlib/stats/base/dmaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a double-precision floating-point strided array.</span>
70
69
- <spanclass="signature">[`dmaxabssorted( N, x, strideX )`][@stdlib/stats/base/dmaxabssorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a sorted double-precision floating-point strided array.</span>
71
70
- <spanclass="signature">[`dmaxsorted( N, x, strideX )`][@stdlib/stats/base/dmaxsorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a sorted double-precision floating-point strided array.</span>
@@ -123,10 +122,10 @@ The namespace contains the following statistical functions:
123
122
- <spanclass="signature">[`dsemwd( N, correction, x, strideX )`][@stdlib/stats/base/dsemwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array using Welford's algorithm.</span>
124
123
- <spanclass="signature">[`dsemyc( N, correction, x, strideX )`][@stdlib/stats/base/dsemyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard error of the mean of a double-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
125
124
- <spanclass="signature">[`dsmean( N, x, stride )`][@stdlib/stats/base/dsmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.</span>
126
-
- <spanclass="signature">[`dsmeanors( N, x, stride )`][@stdlib/stats/base/dsmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.</span>
127
-
- <spanclass="signature">[`dsmeanpn( N, x, stride )`][@stdlib/stats/base/dsmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm with extended accumulation and returning an extended precision result.</span>
125
+
- <spanclass="signature">[`dsmeanors( N, x, strideX )`][@stdlib/stats/base/dsmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation with extended accumulation and returning an extended precision result.</span>
126
+
- <spanclass="signature">[`dsmeanpn( N, x, strideX )`][@stdlib/stats/base/dsmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using a two-pass error correction algorithm with extended accumulation and returning an extended precision result.</span>
128
127
- <spanclass="signature">[`dsmeanpw( N, x, stride )`][@stdlib/stats/base/dsmeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation with extended accumulation and returning an extended precision result.</span>
129
-
- <spanclass="signature">[`dsmeanwd( N, x, stride )`][@stdlib/stats/base/dsmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result.</span>
128
+
- <spanclass="signature">[`dsmeanwd( N, x, strideX )`][@stdlib/stats/base/dsmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm with extended accumulation and returning an extended precision result.</span>
130
129
- <spanclass="signature">[`dsnanmean( N, x, stride )`][@stdlib/stats/base/dsnanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using extended accumulation, and returning an extended precision result.</span>
131
130
- <spanclass="signature">[`dsnanmeanors( N, x, stride )`][@stdlib/stats/base/dsnanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using ordinary recursive summation with extended accumulation, and returning an extended precision result.</span>
132
131
- <spanclass="signature">[`dsnanmeanpn( N, x, stride )`][@stdlib/stats/base/dsnanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using a two-pass error correction algorithm with extended accumulation, and returning an extended precision result.</span>
0 commit comments