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: 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
@@ -216,7 +216,7 @@ var v = stdevch.ndarray( N, 1, x, 2, 1 );
216
216
- If `N <= 0`, both functions return `NaN`.
217
217
- If `N - c` is less than or equal to `0` (where `c` corresponds to the provided degrees of freedom adjustment), both functions return `NaN`.
218
218
- The underlying algorithm is a specialized case of Neely's two-pass algorithm. As the standard deviation is invariant with respect to changes in the location parameter, the underlying algorithm uses the first strided array element as a trial mean to shift subsequent data values and thus mitigate catastrophic cancellation. Accordingly, the algorithm's accuracy is best when data is **unordered** (i.e., the data is **not** sorted in either ascending or descending order such that the first value is an "extreme" value).
219
-
- Depending on the environment, the typed versions ([`dstdevch`][@stdlib/stats/strided/dstdevch], [`sstdevch`][@stdlib/stats/base/sstdevch], etc.) are likely to be significantly more performant.
219
+
- Depending on the environment, the typed versions ([`dstdevch`][@stdlib/stats/strided/dstdevch], [`sstdevch`][@stdlib/stats/strided/sstdevch], etc.) are likely to be significantly more performant.
220
220
221
221
</section>
222
222
@@ -276,7 +276,7 @@ console.log( v );
276
276
277
277
- <spanclass="package-name">[`@stdlib/stats-strided/dstdevch`][@stdlib/stats/strided/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>
278
278
- <spanclass="package-name">[`@stdlib/stats-base/nanstdevch`][@stdlib/stats/base/nanstdevch]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array ignoring NaN values and using a one-pass trial mean algorithm.</span>
279
-
- <spanclass="package-name">[`@stdlib/stats-base/sstdevch`][@stdlib/stats/base/sstdevch]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm.</span>
279
+
- <spanclass="package-name">[`@stdlib/stats-strided/sstdevch`][@stdlib/stats/strided/sstdevch]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass trial mean algorithm.</span>
280
280
- <spanclass="package-name">[`@stdlib/stats-base/stdev`][@stdlib/stats/base/stdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array.</span>
281
281
- <spanclass="package-name">[`@stdlib/stats-base/variancech`][@stdlib/stats/base/variancech]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a one-pass trial mean algorithm.</span>
0 commit comments