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
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,7 +113,7 @@ var ns = extblas;
113
113
- <spanclass="signature">[`gsort2hp( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gsort2hp]</span><spanclass="delimiter">: </span><spanclass="description">simultaneously sort two strided arrays based on the sort order of the first array using heapsort.</span>
114
114
- <spanclass="signature">[`gsort2ins( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gsort2ins]</span><spanclass="delimiter">: </span><spanclass="description">simultaneously sort two strided arrays based on the sort order of the first array using insertion sort.</span>
115
115
- <spanclass="signature">[`gsort2sh( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/gsort2sh]</span><spanclass="delimiter">: </span><spanclass="description">simultaneously sort two strided arrays based on the sort order of the first array using Shellsort.</span>
116
-
- <spanclass="signature">[`gsorthp( N, order, x, stride )`][@stdlib/blas/ext/base/gsorthp]</span><spanclass="delimiter">: </span><spanclass="description">sort a strided array using heapsort.</span>
116
+
- <spanclass="signature">[`gsorthp( N, order, x, strideX )`][@stdlib/blas/ext/base/gsorthp]</span><spanclass="delimiter">: </span><spanclass="description">sort a strided array using heapsort.</span>
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, strideX )`][@stdlib/blas/ext/base/gsum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/ops/README.md
-9Lines changed: 0 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,9 +45,6 @@ The namespace contains the following functions:
45
45
46
46
<divclass="namespace-toc">
47
47
48
-
- <spanclass="signature">[`add( x, y )`][@stdlib/number/float64/base/add]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of two double-precision floating-point numbers.</span>
49
-
- <spanclass="signature">[`add3( x, y, z )`][@stdlib/number/float64/base/add3]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of three double-precision floating-point numbers.</span>
50
-
- <spanclass="signature">[`add4( x, y, z, w )`][@stdlib/number/float64/base/add4]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of four double-precision floating-point numbers.</span>
51
48
- <spanclass="signature">[`add5( x, y, z, w, u )`][@stdlib/math/base/ops/add5]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of five double-precision floating-point numbers.</span>
52
49
- <spanclass="signature">[`addf( x, y )`][@stdlib/math/base/ops/addf]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of two single-precision floating-point numbers.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ The namespace contains the following statistical functions:
126
126
- <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>
127
127
- <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>
128
128
- <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>
129
-
- <spanclass="signature">[`dsnanmeanwd( N, x, stride )`][@stdlib/stats/base/dsnanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using Welford's algorithm with extended accumulation, and returning an extended precision result.</span>
129
+
- <spanclass="signature">[`dsnanmeanwd( N, x, strideX )`][@stdlib/stats/base/dsnanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values, using Welford's algorithm with extended accumulation, and returning an extended precision result.</span>
130
130
- <spanclass="signature">[`dstdev( N, correction, x, stride )`][@stdlib/stats/base/dstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array.</span>
131
131
- <spanclass="signature">[`dstdevch( N, correction, x, strideX )`][@stdlib/stats/base/dstdevch]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array using a one-pass trial mean algorithm.</span>
132
132
- <spanclass="signature">[`dstdevpn( N, correction, x, stride )`][@stdlib/stats/base/dstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array using a two-pass algorithm.</span>
@@ -146,7 +146,7 @@ The namespace contains the following statistical functions:
146
146
- <spanclass="signature">[`dvarmtk( N, mean, correction, x, strideX )`][@stdlib/stats/base/dvarmtk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array provided a known mean and using a one-pass textbook algorithm.</span>
147
147
- <spanclass="signature">[`maxBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/max-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array via a callback function.</span>
148
148
- <spanclass="signature">[`max( N, x, strideX )`][@stdlib/stats/base/max]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array.</span>
149
-
- <spanclass="signature">[`maxabs( N, x, stride )`][@stdlib/stats/base/maxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a strided array.</span>
149
+
- <spanclass="signature">[`maxabs( N, x, strideX )`][@stdlib/stats/base/maxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a strided array.</span>
150
150
- <spanclass="signature">[`maxsorted( N, x, stride )`][@stdlib/stats/base/maxsorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a sorted strided array.</span>
151
151
- <spanclass="signature">[`mean( N, x, stride )`][@stdlib/stats/base/mean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array.</span>
152
152
- <spanclass="signature">[`meankbn( N, x, stride )`][@stdlib/stats/base/meankbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using an improved Kahan–Babuška algorithm.</span>
@@ -158,7 +158,7 @@ The namespace contains the following statistical functions:
158
158
- <spanclass="signature">[`mediansorted( N, x, stride )`][@stdlib/stats/base/mediansorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the median value of a sorted strided array.</span>
159
159
- <spanclass="signature">[`minBy( N, x, stride, clbk[, thisArg] )`][@stdlib/stats/base/min-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array via a callback function.</span>
160
160
- <spanclass="signature">[`min( N, x, strideX )`][@stdlib/stats/base/min]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array.</span>
161
-
- <spanclass="signature">[`minabs( N, x, stride )`][@stdlib/stats/base/minabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum absolute value of a strided array.</span>
161
+
- <spanclass="signature">[`minabs( N, x, strideX )`][@stdlib/stats/base/minabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum absolute value of a strided array.</span>
162
162
- <spanclass="signature">[`minsorted( N, x, stride )`][@stdlib/stats/base/minsorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a sorted strided array.</span>
163
163
- <spanclass="signature">[`mskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array according to a mask.</span>
164
164
- <spanclass="signature">[`mskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/mskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array according to a mask.</span>
@@ -196,7 +196,7 @@ The namespace contains the following statistical functions:
196
196
- <spanclass="signature">[`scumaxabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/scumaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative maximum absolute value of single-precision floating-point strided array elements.</span>
197
197
- <spanclass="signature">[`scumin( N, x, strideX, y, strideY )`][@stdlib/stats/base/scumin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative minimum of single-precision floating-point strided array elements.</span>
198
198
- <spanclass="signature">[`scuminabs( N, x, strideX, y, strideY )`][@stdlib/stats/base/scuminabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the cumulative minimum absolute value of single-precision floating-point strided array elements.</span>
199
-
- <spanclass="signature">[`sdsmean( N, x, stride )`][@stdlib/stats/base/sdsmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation.</span>
199
+
- <spanclass="signature">[`sdsmean( N, x, strideX )`][@stdlib/stats/base/sdsmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation.</span>
200
200
- <spanclass="signature">[`sdsmeanors( N, x, strideX )`][@stdlib/stats/base/sdsmeanors]</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.</span>
201
201
- <spanclass="signature">[`sdsnanmean( N, x, stride )`][@stdlib/stats/base/sdsnanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using extended accumulation.</span>
202
202
- <spanclass="signature">[`sdsnanmeanors( N, x, stride )`][@stdlib/stats/base/sdsnanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation with extended accumulation.</span>
0 commit comments