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
@@ -70,7 +70,7 @@ The namespace contains the following statistical functions:
70
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/strided/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/strided/meanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
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>
73
+
- <spanclass="signature">[`meanwd( N, x, strideX )`][@stdlib/stats/strided/meanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
74
74
- <spanclass="signature">[`nanmean( N, x, stride )`][@stdlib/stats/base/nanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values.</span>
75
75
- <spanclass="signature">[`nanmeanors( N, x, stride )`][@stdlib/stats/base/nanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using ordinary recursive summation.</span>
76
76
- <spanclass="signature">[`nanmeanpn( N, x, strideX )`][@stdlib/stats/base/nanmeanpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array, ignoring `NaN` values and using a two-pass error correction algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/nanmeanwd/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
@@ -197,7 +197,7 @@ console.log( v );
197
197
## See Also
198
198
199
199
- <spanclass="package-name">[`@stdlib/stats/strided/dnanmeanwd`][@stdlib/stats/strided/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>
200
-
- <spanclass="package-name">[`@stdlib/stats/base/meanwd`][@stdlib/stats/base/meanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
200
+
- <spanclass="package-name">[`@stdlib/stats/strided/meanwd`][@stdlib/stats/strided/meanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
201
201
- <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>
202
202
- <spanclass="package-name">[`@stdlib/stats/strided/snanmeanwd`][@stdlib/stats/strided/snanmeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dmeanwd/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
@@ -301,7 +301,7 @@ int main( void ) {
301
301
302
302
- <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>
303
303
- <span class="package-name">[`@stdlib/stats/strided/dnanmeanwd`][@stdlib/stats/strided/dnanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array, using Welford's algorithm and ignoring NaN values.</span>
304
-
- <span class="package-name">[`@stdlib/stats/base/meanwd`][@stdlib/stats/base/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
304
+
- <span class="package-name">[`@stdlib/stats/strided/meanwd`][@stdlib/stats/strided/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
305
305
- <span class="package-name">[`@stdlib/stats/strided/smeanwd`][@stdlib/stats/strided/smeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dsmeanwd/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
@@ -302,7 +302,7 @@ int main( void ) {
302
302
- <span class="package-name">[`@stdlib/stats/strided/dmeanwd`][@stdlib/stats/strided/dmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using Welford's algorithm.</span>
303
303
- <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>
304
304
- <span class="package-name">[`@stdlib/stats/strided/dsnanmeanwd`][@stdlib/stats/strided/dsnanmeanwd]</span><span class="delimiter">: </span><span class="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>
305
-
- <span class="package-name">[`@stdlib/stats/base/meanwd`][@stdlib/stats/base/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
305
+
- <span class="package-name">[`@stdlib/stats/strided/meanwd`][@stdlib/stats/strided/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
306
306
- <span class="package-name">[`@stdlib/stats/strided/smeanwd`][@stdlib/stats/strided/smeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/smeanwd/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
@@ -299,7 +299,7 @@ int main( void ) {
299
299
## See Also
300
300
301
301
- <span class="package-name">[`@stdlib/stats/strided/dmeanwd`][@stdlib/stats/strided/dmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using Welford's algorithm.</span>
302
-
- <span class="package-name">[`@stdlib/stats/base/meanwd`][@stdlib/stats/base/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
302
+
- <span class="package-name">[`@stdlib/stats/strided/meanwd`][@stdlib/stats/strided/meanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using Welford's algorithm.</span>
303
303
- <span class="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
304
304
- <span class="package-name">[`@stdlib/stats/strided/snanmeanwd`][@stdlib/stats/strided/snanmeanwd]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using Welford's algorithm.</span>
0 commit comments