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-2
Original file line number
Diff line number
Diff line change
@@ -227,7 +227,7 @@ The namespace contains the following statistical functions:
227
227
- <spanclass="signature">[`srange( N, x, strideX )`][@stdlib/stats/strided/srange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array.</span>
228
228
- <spanclass="signature">[`sstdev( N, correction, x, stride )`][@stdlib/stats/base/sstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array.</span>
229
229
- <spanclass="signature">[`sstdevch( N, correction, x, strideX )`][@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>
230
-
- <spanclass="signature">[`sstdevpn( N, correction, x, strideX )`][@stdlib/stats/base/sstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
230
+
- <spanclass="signature">[`sstdevpn( N, correction, x, strideX )`][@stdlib/stats/strided/sstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
231
231
- <spanclass="signature">[`sstdevtk( N, correction, x, strideX )`][@stdlib/stats/base/sstdevtk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass textbook algorithm.</span>
232
232
- <spanclass="signature">[`sstdevwd( N, correction, x, stride )`][@stdlib/stats/base/sstdevwd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using Welford's algorithm.</span>
233
233
- <spanclass="signature">[`sstdevyc( N, correction, x, strideX )`][@stdlib/stats/base/sstdevyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a one-pass algorithm proposed by Youngs and Cramer.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/snanstdevpn/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -247,7 +247,7 @@ console.log( v );
247
247
- <spanclass="package-name">[`@stdlib/stats/base/nanstdevpn`][@stdlib/stats/base/nanstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array ignoring NaN values and using a two-pass algorithm.</span>
248
248
- <spanclass="package-name">[`@stdlib/stats/base/snanstdev`][@stdlib/stats/base/snanstdev]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array ignoring NaN values.</span>
249
249
- <spanclass="package-name">[`@stdlib/stats/base/snanvariancepn`][@stdlib/stats/base/snanvariancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array ignoring NaN values and using a two-pass algorithm.</span>
250
-
- <spanclass="package-name">[`@stdlib/stats/base/sstdevpn`][@stdlib/stats/base/sstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
250
+
- <spanclass="package-name">[`@stdlib/stats/strided/sstdevpn`][@stdlib/stats/strided/sstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/stdevpn/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -182,7 +182,7 @@ var v = stdevpn.ndarray( N, 1, x, 2, 1 );
182
182
183
183
- If `N <= 0`, both functions return `NaN`.
184
184
- If `N - c` is less than or equal to `0` (where `c` corresponds to the provided degrees of freedom adjustment), both functions return `NaN`.
185
-
- Depending on the environment, the typed versions ([`dstdevpn`][@stdlib/stats/strided/dstdevpn], [`sstdevpn`][@stdlib/stats/base/sstdevpn], etc.) are likely to be significantly more performant.
185
+
- Depending on the environment, the typed versions ([`dstdevpn`][@stdlib/stats/strided/dstdevpn], [`sstdevpn`][@stdlib/stats/strided/sstdevpn], etc.) are likely to be significantly more performant.
186
186
187
187
</section>
188
188
@@ -240,7 +240,7 @@ console.log( v );
240
240
241
241
- <spanclass="package-name">[`@stdlib/stats/strided/dstdevpn`][@stdlib/stats/strided/dstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a double-precision floating-point strided array using a two-pass algorithm.</span>
242
242
- <spanclass="package-name">[`@stdlib/stats/base/nanstdevpn`][@stdlib/stats/base/nanstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a strided array ignoring NaN values and using a two-pass algorithm.</span>
243
-
- <spanclass="package-name">[`@stdlib/stats/base/sstdevpn`][@stdlib/stats/base/sstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
243
+
- <spanclass="package-name">[`@stdlib/stats/strided/sstdevpn`][@stdlib/stats/strided/sstdevpn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
244
244
- <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>
245
245
- <spanclass="package-name">[`@stdlib/stats/base/variancepn`][@stdlib/stats/base/variancepn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a strided array using a two-pass algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/svariancepn/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -351,7 +351,7 @@ int main( void ) {
351
351
352
352
- <span class="package-name">[`@stdlib/stats/strided/dvariancepn`][@stdlib/stats/strided/dvariancepn]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array using a two-pass algorithm.</span>
353
353
- <span class="package-name">[`@stdlib/stats/base/snanvariancepn`][@stdlib/stats/base/snanvariancepn]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array ignoring NaN values and using a two-pass algorithm.</span>
354
-
- <span class="package-name">[`@stdlib/stats/base/sstdevpn`][@stdlib/stats/base/sstdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
354
+
- <span class="package-name">[`@stdlib/stats/strided/sstdevpn`][@stdlib/stats/strided/sstdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
355
355
- <span class="package-name">[`@stdlib/stats/base/svariance`][@stdlib/stats/base/svariance]</span><span class="delimiter">: </span><span class="description">calculate the variance of a single-precision floating-point strided array.</span>
356
356
- <span class="package-name">[`@stdlib/stats/base/variancepn`][@stdlib/stats/base/variancepn]</span><span class="delimiter">: </span><span class="description">calculate the variance of a strided array using a two-pass algorithm.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/dstdevpn/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -352,7 +352,7 @@ int main( void ) {
352
352
- <span class="package-name">[`@stdlib/stats/strided/dnanstdevpn`][@stdlib/stats/strided/dnanstdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array ignoring NaN values and using a two-pass algorithm.</span>
353
353
- <span class="package-name">[`@stdlib/stats/base/dstdev`][@stdlib/stats/base/dstdev]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a double-precision floating-point strided array.</span>
354
354
- <span class="package-name">[`@stdlib/stats/strided/dvariancepn`][@stdlib/stats/strided/dvariancepn]</span><span class="delimiter">: </span><span class="description">calculate the variance of a double-precision floating-point strided array using a two-pass algorithm.</span>
355
-
- <span class="package-name">[`@stdlib/stats/base/sstdevpn`][@stdlib/stats/base/sstdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
355
+
- <span class="package-name">[`@stdlib/stats/strided/sstdevpn`][@stdlib/stats/strided/sstdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a single-precision floating-point strided array using a two-pass algorithm.</span>
356
356
- <span class="package-name">[`@stdlib/stats/base/stdevpn`][@stdlib/stats/base/stdevpn]</span><span class="delimiter">: </span><span class="description">calculate the standard deviation of a strided array using a two-pass algorithm.</span>
0 commit comments