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/stats/base/README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -84,20 +84,20 @@ The namespace contains the following statistical functions:
84
84
- <spanclass="signature">[`dmeanwd( N, x, stride )`][@stdlib/stats/base/dmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using Welford's algorithm.</span>
85
85
- <spanclass="signature">[`dmediansorted( N, x, stride )`][@stdlib/stats/base/dmediansorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the median value of a sorted double-precision floating-point strided array.</span>
86
86
- <spanclass="signature">[`dmidrange( N, x, stride )`][@stdlib/stats/base/dmidrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mid-range of a double-precision floating-point strided array.</span>
87
-
- <spanclass="signature">[`dmin( N, x, stride )`][@stdlib/stats/base/dmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array.</span>
87
+
- <spanclass="signature">[`dmin( N, x, strideX )`][@stdlib/stats/base/dmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array.</span>
88
88
- <spanclass="signature">[`dminabs( N, x, strideX )`][@stdlib/stats/base/dminabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum absolute value of a double-precision floating-point strided array.</span>
89
89
- <spanclass="signature">[`dminsorted( N, x, stride )`][@stdlib/stats/base/dminsorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a sorted double-precision floating-point strided array.</span>
90
90
- <spanclass="signature">[`dmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array according to a mask.</span>
91
91
- <spanclass="signature">[`dmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array according to a mask.</span>
92
92
- <spanclass="signature">[`dmskrange( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dmskrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a double-precision floating-point strided array according to a mask.</span>
93
-
- <spanclass="signature">[`dnanmax( N, x, stride )`][@stdlib/stats/base/dnanmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
94
-
- <spanclass="signature">[`dnanmaxabs( N, x, stride )`][@stdlib/stats/base/dnanmaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
93
+
- <spanclass="signature">[`dnanmax( N, x, strideX )`][@stdlib/stats/base/dnanmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
94
+
- <spanclass="signature">[`dnanmaxabs( N, x, strideX )`][@stdlib/stats/base/dnanmaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
95
95
- <spanclass="signature">[`dnanmean( N, x, stride )`][@stdlib/stats/base/dnanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values.</span>
96
96
- <spanclass="signature">[`dnanmeanors( N, x, stride )`][@stdlib/stats/base/dnanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
97
97
- <spanclass="signature">[`dnanmeanpn( N, x, stride )`][@stdlib/stats/base/dnanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
98
98
- <spanclass="signature">[`dnanmeanpw( N, x, stride )`][@stdlib/stats/base/dnanmeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring `NaN` values and using pairwise summation.</span>
99
99
- <spanclass="signature">[`dnanmeanwd( N, x, stride )`][@stdlib/stats/base/dnanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring `NaN` values.</span>
100
-
- <spanclass="signature">[`dnanmin( N, x, stride )`][@stdlib/stats/base/dnanmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
100
+
- <spanclass="signature">[`dnanmin( N, x, strideX )`][@stdlib/stats/base/dnanmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
101
101
- <spanclass="signature">[`dnanminabs( N, x, strideX )`][@stdlib/stats/base/dnanminabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum absolute value of a double-precision floating-point strided array, ignoring `NaN` values.</span>
102
102
- <spanclass="signature">[`dnanmskmax( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dnanmskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a double-precision floating-point strided array according to a mask, ignoring `NaN` values.</span>
103
103
- <spanclass="signature">[`dnanmskmin( N, x, strideX, mask, strideMask )`][@stdlib/stats/base/dnanmskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a double-precision floating-point strided array according to a mask, ignoring `NaN` values.</span>
@@ -204,8 +204,8 @@ The namespace contains the following statistical functions:
204
204
- <spanclass="signature">[`sdsmeanors( N, x, stride )`][@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>
205
205
- <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>
206
206
- <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>
207
-
- <spanclass="signature">[`smax( N, x, stride )`][@stdlib/stats/base/smax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a single-precision floating-point strided array.</span>
208
-
- <spanclass="signature">[`smaxabs( N, x, stride )`][@stdlib/stats/base/smaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a single-precision floating-point strided array.</span>
207
+
- <spanclass="signature">[`smax( N, x, strideX )`][@stdlib/stats/base/smax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a single-precision floating-point strided array.</span>
208
+
- <spanclass="signature">[`smaxabs( N, x, strideX )`][@stdlib/stats/base/smaxabs]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a single-precision floating-point strided array.</span>
209
209
- <spanclass="signature">[`smaxabssorted( N, x, stride )`][@stdlib/stats/base/smaxabssorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum absolute value of a sorted single-precision floating-point strided array.</span>
210
210
- <spanclass="signature">[`smaxsorted( N, x, stride )`][@stdlib/stats/base/smaxsorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a sorted single-precision floating-point strided array.</span>
211
211
- <spanclass="signature">[`smean( N, x, stride )`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
0 commit comments