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/blas/ext/base/ssum/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
## See Also
278
278
279
279
- <span class="package-name">[`@stdlib/blas/ext/base/dsum`][@stdlib/blas/ext/base/dsum]</span><span class="delimiter">: </span><span class="description">calculate the sum of double-precision floating-point strided array elements.</span>
280
-
- <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>
280
+
- <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>
281
281
- <span class="package-name">[`@stdlib/blas/ext/base/snansum`][@stdlib/blas/ext/base/snansum]</span><span class="delimiter">: </span><span class="description">calculate the sum of single-precision floating-point strided array elements, ignoring NaN values.</span>
282
282
- <span class="package-name">[`@stdlib/blas/ext/base/gsum`][@stdlib/blas/ext/base/gsum]</span><span class="delimiter">: </span><span class="description">calculate the sum of strided array elements.</span>
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
@@ -118,7 +118,7 @@ The namespace contains the following statistical functions:
118
118
- <spanclass="signature">[`range( N, x, strideX )`][@stdlib/stats/base/range]</span><spanclass="delimiter">: </span><spanclass="description">calculate the range of a strided array.</span>
119
119
- <spanclass="signature">[`sdsnanmean( N, x, stride )`][@stdlib/stats/base/sdsnanmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using extended accumulation.</span>
120
120
- <spanclass="signature">[`sdsnanmeanors( N, x, stride )`][@stdlib/stats/base/sdsnanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring `NaN` values and using ordinary recursive summation with extended accumulation.</span>
121
-
- <spanclass="signature">[`smean( N, x, strideX )`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
121
+
- <spanclass="signature">[`smean( N, x, strideX )`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
122
122
- <spanclass="signature">[`smeankbn( N, x, stride )`][@stdlib/stats/base/smeankbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using an improved Kahan–Babuška algorithm.</span>
123
123
- <spanclass="signature">[`smeankbn2( N, x, stride )`][@stdlib/stats/base/smeankbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array using a second-order iterative Kahan–Babuška algorithm.</span>
124
124
- <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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/mean/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
@@ -125,7 +125,7 @@ var v = mean.ndarray( 4, x, 2, 1 );
125
125
126
126
- If `N <= 0`, both functions return `NaN`.
127
127
- Both functions support array-like objects having getter and setter accessors for array element access (e.g., [`@stdlib/array/base/accessor`][@stdlib/array/base/accessor]).
128
-
- Depending on the environment, the typed versions ([`dmean`][@stdlib/stats/strided/dmean], [`smean`][@stdlib/stats/base/smean], etc.) are likely to be significantly more performant.
128
+
- Depending on the environment, the typed versions ([`dmean`][@stdlib/stats/strided/dmean], [`smean`][@stdlib/stats/strided/smean], etc.) are likely to be significantly more performant.
129
129
130
130
</section>
131
131
@@ -164,7 +164,7 @@ console.log( v );
164
164
165
165
- <spanclass="package-name">[`@stdlib/stats/strided/dmean`][@stdlib/stats/strided/dmean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array.</span>
166
166
- <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>
167
-
- <spanclass="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
167
+
- <spanclass="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/smeankbn/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
198
198
- <spanclass="package-name">[`@stdlib/stats/strided/dmeankbn`][@stdlib/stats/strided/dmeankbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using an improved Kahan–Babuška algorithm.</span>
199
199
- <spanclass="package-name">[`@stdlib/stats/base/meankbn`][@stdlib/stats/base/meankbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using an improved Kahan–Babuška algorithm.</span>
200
-
- <spanclass="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
200
+
- <spanclass="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/smeankbn2/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
198
198
- <spanclass="package-name">[`@stdlib/stats/strided/dmeankbn2`][@stdlib/stats/strided/dmeankbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using a second-order iterative Kahan–Babuška algorithm.</span>
199
199
- <spanclass="package-name">[`@stdlib/stats/base/meankbn2`][@stdlib/stats/base/meankbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using a second-order iterative Kahan–Babuška algorithm.</span>
200
-
- <spanclass="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
200
+
- <spanclass="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/smeanlipw/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
@@ -200,7 +200,7 @@ console.log( v );
200
200
## See Also
201
201
202
202
- <spanclass="package-name">[`@stdlib/stats/strided/dmeanlipw`][@stdlib/stats/strided/dmeanlipw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using a one-pass trial mean algorithm with pairwise summation.</span>
203
-
- <spanclass="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
203
+
- <spanclass="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
204
204
- <spanclass="package-name">[`@stdlib/stats/strided/smeanli`][@stdlib/stats/strided/smeanli]</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.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/stats/base/smeanors/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
@@ -192,7 +192,7 @@ console.log( v );
192
192
193
193
- <spanclass="package-name">[`@stdlib/stats/strided/dmeanors`][@stdlib/stats/strided/dmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a double-precision floating-point strided array using ordinary recursive summation.</span>
194
194
- <spanclass="package-name">[`@stdlib/stats/base/meanors`][@stdlib/stats/base/meanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a strided array using ordinary recursive summation.</span>
195
-
- <spanclass="package-name">[`@stdlib/stats/base/smean`][@stdlib/stats/base/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
195
+
- <spanclass="package-name">[`@stdlib/stats/strided/smean`][@stdlib/stats/strided/smean]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array.</span>
196
196
- <spanclass="package-name">[`@stdlib/stats/strided/snanmeanors`][@stdlib/stats/strided/snanmeanors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the arithmetic mean of a single-precision floating-point strided array, ignoring NaN values and using ordinary recursive summation.</span>
0 commit comments