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
@@ -224,7 +224,7 @@ The namespace contains the following statistical functions:
224
224
- <spanclass="signature">[`snanvariancetk( N, correction, x, stride )`][@stdlib/stats/base/snanvariancetk]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array ignoring `NaN` values and using a one-pass textbook algorithm.</span>
225
225
- <spanclass="signature">[`snanvariancewd( N, correction, x, stride )`][@stdlib/stats/base/snanvariancewd]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array ignoring `NaN` values and using Welford's algorithm.</span>
226
226
- <spanclass="signature">[`snanvarianceyc( N, correction, x, stride )`][@stdlib/stats/base/snanvarianceyc]</span><spanclass="delimiter">: </span><spanclass="description">calculate the variance of a single-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.</span>
227
-
- <spanclass="signature">[`srange( N, x, strideX )`][@stdlib/stats/base/srange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array.</span>
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/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>
230
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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/range-by/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
@@ -170,7 +170,7 @@ var v = rangeBy.ndarray( 3, x, 1, x.length-3, accessor );
170
170
- If `N <= 0`, both functions return `NaN`.
171
171
- A provided callback function should return a numeric value.
172
172
- If a provided callback function does not return any value (or equivalently, explicitly returns `undefined`), the value is **ignored**.
173
-
- When possible, prefer using [`drange`][@stdlib/stats/strided/drange], [`srange`][@stdlib/stats/base/srange], and/or [`range`][@stdlib/stats/base/range], as, depending on the environment, these interfaces are likely to be significantly more performant.
173
+
- When possible, prefer using [`drange`][@stdlib/stats/strided/drange], [`srange`][@stdlib/stats/strided/srange], and/or [`range`][@stdlib/stats/base/range], as, depending on the environment, these interfaces are likely to be significantly more performant.
174
174
175
175
</section>
176
176
@@ -215,7 +215,7 @@ console.log( v );
215
215
- <spanclass="package-name">[`@stdlib/stats/base/min-by`][@stdlib/stats/base/min-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array via a callback function.</span>
216
216
- <spanclass="package-name">[`@stdlib/stats/base/nanrange-by`][@stdlib/stats/base/nanrange-by]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array via a callback function, ignoring NaN values.</span>
217
217
- <spanclass="package-name">[`@stdlib/stats/base/range`][@stdlib/stats/base/range]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array.</span>
218
-
- <spanclass="package-name">[`@stdlib/stats/base/srange`][@stdlib/stats/base/srange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array.</span>
218
+
- <spanclass="package-name">[`@stdlib/stats/strided/srange`][@stdlib/stats/strided/srange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/range/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
@@ -122,7 +122,7 @@ var v = range.ndarray( N, x, 2, 1 );
122
122
## Notes
123
123
124
124
- If `N <= 0`, both functions return `NaN`.
125
-
- Depending on the environment, the typed versions ([`drange`][@stdlib/stats/strided/drange], [`srange`][@stdlib/stats/base/srange], etc.) are likely to be significantly more performant.
125
+
- Depending on the environment, the typed versions ([`drange`][@stdlib/stats/strided/drange], [`srange`][@stdlib/stats/strided/srange], etc.) are likely to be significantly more performant.
126
126
127
127
</section>
128
128
@@ -169,7 +169,7 @@ console.log( v );
169
169
- <spanclass="package-name">[`@stdlib/stats/base/max`][@stdlib/stats/base/max]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array.</span>
170
170
- <spanclass="package-name">[`@stdlib/stats/base/min`][@stdlib/stats/base/min]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array.</span>
171
171
- <spanclass="package-name">[`@stdlib/stats/base/nanrange`][@stdlib/stats/base/nanrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array, ignoring NaN values.</span>
172
-
- <spanclass="package-name">[`@stdlib/stats/base/srange`][@stdlib/stats/base/srange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array.</span>
172
+
- <spanclass="package-name">[`@stdlib/stats/strided/srange`][@stdlib/stats/strided/srange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/smidrange/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
@@ -276,7 +276,7 @@ int main( void ) {
276
276
- <span class="package-name">[`@stdlib/stats/strided/smax`][@stdlib/stats/strided/smax]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a single-precision floating-point strided array.</span>
277
277
- <span class="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><span class="delimiter">: </span><span class="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
278
278
- <span class="package-name">[`@stdlib/stats/strided/smin`][@stdlib/stats/strided/smin]</span><span class="delimiter">: </span><span class="description">calculate the minimum value of a single-precision floating-point strided array.</span>
279
-
- <span class="package-name">[`@stdlib/stats/base/srange`][@stdlib/stats/base/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
279
+
- <span class="package-name">[`@stdlib/stats/strided/srange`][@stdlib/stats/strided/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/drange/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
@@ -277,7 +277,7 @@ int main( void ) {
277
277
- <span class="package-name">[`@stdlib/stats/strided/dmin`][@stdlib/stats/strided/dmin]</span><span class="delimiter">: </span><span class="description">calculate the minimum value of a double-precision floating-point strided array.</span>
278
278
- <span class="package-name">[`@stdlib/stats/strided/dnanrange`][@stdlib/stats/strided/dnanrange]</span><span class="delimiter">: </span><span class="description">calculate the range of a double-precision floating-point strided array, ignoring NaN values.</span>
279
279
- <span class="package-name">[`@stdlib/stats/base/range`][@stdlib/stats/base/range]</span><span class="delimiter">: </span><span class="description">calculate the range of a strided array.</span>
280
-
- <span class="package-name">[`@stdlib/stats/base/srange`][@stdlib/stats/base/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
280
+
- <span class="package-name">[`@stdlib/stats/strided/srange`][@stdlib/stats/strided/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/smskrange/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
@@ -318,7 +318,7 @@ int main( void ) {
318
318
- <span class="package-name">[`@stdlib/stats/strided/smskmax`][@stdlib/stats/strided/smskmax]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a single-precision floating-point strided array according to a mask.</span>
319
319
- <span class="package-name">[`@stdlib/stats/strided/smskmin`][@stdlib/stats/strided/smskmin]</span><span class="delimiter">: </span><span class="description">calculate the minimum value of a single-precision floating-point strided array according to a mask.</span>
320
320
- <span class="package-name">[`@stdlib/stats/strided/snanrange`][@stdlib/stats/strided/snanrange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array, ignoring NaN values.</span>
321
-
- <span class="package-name">[`@stdlib/stats/base/srange`][@stdlib/stats/base/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
321
+
- <span class="package-name">[`@stdlib/stats/strided/srange`][@stdlib/stats/strided/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/strided/snanrange/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
@@ -286,7 +286,7 @@ int main( void ) {
286
286
- <span class="package-name">[`@stdlib/stats/base/nanrange`][@stdlib/stats/base/nanrange]</span><span class="delimiter">: </span><span class="description">calculate the range of a strided array, ignoring NaN values.</span>
287
287
- <span class="package-name">[`@stdlib/stats/strided/snanmax`][@stdlib/stats/strided/snanmax]</span><span class="delimiter">: </span><span class="description">calculate the maximum value of a single-precision floating-point strided array, ignoring NaN values.</span>
288
288
- <span class="package-name">[`@stdlib/stats/strided/snanmin`][@stdlib/stats/strided/snanmin]</span><span class="delimiter">: </span><span class="description">calculate the minimum value of a single-precision floating-point strided array, ignoring NaN values.</span>
289
-
- <span class="package-name">[`@stdlib/stats/base/srange`][@stdlib/stats/base/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
289
+
- <span class="package-name">[`@stdlib/stats/strided/srange`][@stdlib/stats/strided/srange]</span><span class="delimiter">: </span><span class="description">calculate the range of a single-precision floating-point strided array.</span>
0 commit comments