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
@@ -190,7 +190,7 @@ The namespace contains the following statistical functions:
190
190
- <spanclass="signature">[`smeanlipw( N, x, stride )`][@stdlib/stats/base/smeanlipw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using a one-pass trial mean algorithm with pairwise summation.</span>
191
191
- <spanclass="signature">[`smeanors( N, x, stride )`][@stdlib/stats/base/smeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using ordinary recursive summation.</span>
192
192
- <spanclass="signature">[`smeanpn( N, x, stride )`][@stdlib/stats/base/smeanpn]</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.</span>
193
-
- <spanclass="signature">[`smeanpw( N, x, strideX )`][@stdlib/stats/base/smeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
193
+
- <spanclass="signature">[`smeanpw( N, x, strideX )`][@stdlib/stats/strided/smeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
194
194
- <spanclass="signature">[`smeanwd( N, x, strideX )`][@stdlib/stats/base/smeanwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using Welford's algorithm.</span>
195
195
- <spanclass="signature">[`smediansorted( N, x, strideX )`][@stdlib/stats/base/smediansorted]</span><spanclass="delimiter">: </span><spanclass="description">calculate the median value of a sorted single-precision floating-point strided array.</span>
196
196
- <spanclass="signature">[`smidrange( N, x, strideX )`][@stdlib/stats/base/smidrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mid-range of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/meanpw/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ var v = meanpw.ndarray( N, x, 2, 1 );
136
136
137
137
- If `N <= 0`, both functions return `NaN`.
138
138
- In general, pairwise summation is more numerically stable than ordinary recursive summation (i.e., "simple" summation), with slightly worse performance. While not the most numerically stable summation technique (e.g., compensated summation techniques such as the Kahan–Babuška-Neumaier algorithm are generally more numerically stable), pairwise summation strikes a reasonable balance between numerical stability and performance. If either numerical stability or performance is more desirable for your use case, consider alternative summation techniques.
139
-
- Depending on the environment, the typed versions ([`dmeanpw`][@stdlib/stats/strided/dmeanpw], [`smeanpw`][@stdlib/stats/base/smeanpw], etc.) are likely to be significantly more performant.
139
+
- Depending on the environment, the typed versions ([`dmeanpw`][@stdlib/stats/strided/dmeanpw], [`smeanpw`][@stdlib/stats/strided/smeanpw], etc.) are likely to be significantly more performant.
140
140
141
141
</section>
142
142
@@ -193,7 +193,7 @@ console.log( v );
193
193
194
194
- <spanclass="package-name">[`@stdlib/stats/strided/dmeanpw`][@stdlib/stats/strided/dmeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using pairwise summation.</span>
195
195
- <spanclass="package-name">[`@stdlib/stats/base/mean`][@stdlib/stats/base/mean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array.</span>
196
-
- <spanclass="package-name">[`@stdlib/stats/base/smeanpw`][@stdlib/stats/base/smeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
196
+
- <spanclass="package-name">[`@stdlib/stats/strided/smeanpw`][@stdlib/stats/strided/smeanpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dmeanpw/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
- <span class="package-name">[`@stdlib/stats/base/dmean`][@stdlib/stats/base/dmean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array.</span>
302
302
- <span class="package-name">[`@stdlib/stats/strided/dnanmeanpw`][@stdlib/stats/strided/dnanmeanpw]</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 pairwise summation.</span>
303
303
- <span class="package-name">[`@stdlib/stats/base/meanpw`][@stdlib/stats/base/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
304
-
- <span class="package-name">[`@stdlib/stats/base/smeanpw`][@stdlib/stats/base/smeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
304
+
- <span class="package-name">[`@stdlib/stats/strided/smeanpw`][@stdlib/stats/strided/smeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dsmeanpw/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/dmeanpw`][@stdlib/stats/strided/dmeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a double-precision floating-point strided array using pairwise summation.</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/base/meanpw`][@stdlib/stats/base/meanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a strided array using pairwise summation.</span>
305
-
- <span class="package-name">[`@stdlib/stats/base/smeanpw`][@stdlib/stats/base/smeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
305
+
- <span class="package-name">[`@stdlib/stats/strided/smeanpw`][@stdlib/stats/strided/smeanpw]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array using pairwise summation.</span>
0 commit comments