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
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,7 +67,7 @@ The namespace contains the following statistical functions:
67
67
- <spanclass="signature">[`dmeanvarpn( N, correction, x, strideX, out, strideOut )`][@stdlib/stats/base/dmeanvarpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mean and variance of a double-precision floating-point strided array using a two-pass algorithm.</span>
68
68
- <spanclass="signature">[`dvarm( N, mean, correction, x, stride )`][@stdlib/stats/base/dvarm]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array provided a known mean.</span>
69
69
- <spanclass="signature">[`dvarmpn( N, mean, correction, x, stride )`][@stdlib/stats/base/dvarmpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a double-precision floating-point strided array provided a known mean and using Neely's correction algorithm.</span>
70
-
- <spanclass="signature">[`meanors( N, x, stride )`][@stdlib/stats/base/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
70
+
- <spanclass="signature">[`meanors( N, x, stride )`][@stdlib/stats/strided/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
71
71
- <spanclass="signature">[`meanpn( N, x, strideX )`][@stdlib/stats/base/meanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using a two-pass error correction algorithm.</span>
72
72
- <spanclass="signature">[`meanpw( N, x, stride )`][@stdlib/stats/base/meanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
73
73
- <spanclass="signature">[`meanwd( N, x, strideX )`][@stdlib/stats/base/meanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/nanmeanors/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,7 +191,7 @@ console.log( v );
191
191
## See Also
192
192
193
193
- <spanclass="package-name">[`@stdlib/stats/strided/dnanmeanors`][@stdlib/stats/strided/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>
194
-
- <spanclass="package-name">[`@stdlib/stats/base/meanors`][@stdlib/stats/base/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
194
+
- <spanclass="package-name">[`@stdlib/stats/strided/meanors`][@stdlib/stats/strided/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
195
195
- <spanclass="package-name">[`@stdlib/stats/base/nanmean`][@stdlib/stats/base/nanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring NaN values.</span>
196
196
- <spanclass="package-name">[`@stdlib/stats/strided/snanmeanors`][@stdlib/stats/strided/snanmeanors]</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.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/smeanors/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -191,7 +191,7 @@ console.log( v );
191
191
## See Also
192
192
193
193
- <spanclass="package-name">[`@stdlib/stats/strided/dmeanors`][@stdlib/stats/strided/dmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using ordinary recursive summation.</span>
194
-
- <spanclass="package-name">[`@stdlib/stats/base/meanors`][@stdlib/stats/base/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
194
+
- <spanclass="package-name">[`@stdlib/stats/strided/meanors`][@stdlib/stats/strided/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
195
195
- <spanclass="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
196
196
- <spanclass="package-name">[`@stdlib/stats/strided/snanmeanors`][@stdlib/stats/strided/snanmeanors]</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.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dmeanors/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -288,7 +288,7 @@ int main( void ) {
288
288
289
289
- <span class="package-name">[`@stdlib/stats/strided/dmean`][@stdlib/stats/strided/dmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array.</span>
290
290
- <span class="package-name">[`@stdlib/stats/strided/dnanmeanors`][@stdlib/stats/strided/dnanmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, ignoring NaN values and using ordinary recursive summation.</span>
291
-
- <span class="package-name">[`@stdlib/stats/base/meanors`][@stdlib/stats/base/meanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
291
+
- <span class="package-name">[`@stdlib/stats/strided/meanors`][@stdlib/stats/strided/meanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
292
292
- <span class="package-name">[`@stdlib/stats/base/smeanors`][@stdlib/stats/base/smeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dsmeanors/README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -296,7 +296,7 @@ int main( void ) {
296
296
- <span class="package-name">[`@stdlib/stats/strided/dmeanors`][@stdlib/stats/strided/dmeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using ordinary recursive summation.</span>
297
297
- <span class="package-name">[`@stdlib/stats/strided/dsmean`][@stdlib/stats/strided/dsmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using extended accumulation and returning an extended precision result.</span>
298
298
- <span class="package-name">[`@stdlib/stats/strided/dsnanmeanors`][@stdlib/stats/strided/dsnanmeanors]</span><span class="delimiter">: </span><span class="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>
299
-
- <span class="package-name">[`@stdlib/stats/base/meanors`][@stdlib/stats/base/meanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
299
+
- <span class="package-name">[`@stdlib/stats/strided/meanors`][@stdlib/stats/strided/meanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
300
300
- <span class="package-name">[`@stdlib/stats/base/smeanors`][@stdlib/stats/base/smeanors]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation.</span>
0 commit comments