Skip to content

Commit bc71835

Browse files
committed
Update artifacts
1 parent a88b55b commit bc71835

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[148,148,100,3,3,100,1,1,100,148,148,100,"b1eecc87f98bdd0d9afc49ed2d209a362e8cabb3","2025-07-18 17:11:28 +0000"]
1+
[148,148,100,3,3,100,1,1,100,148,148,100,"52fc2620a11ba2807330a60ee277d66033c5f80a","2025-07-21 10:43:08 +0000"]

stats/base/ndarray/scovarmtk/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ <h1><a href="../../../../../index.html">All files</a> stats/base/ndarray/scovarm
116116
<div class='footer quiet pad2 space-top1 center small'>
117117
Code coverage generated by
118118
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
119-
at 2025-07-18T19:04:05.176Z
119+
at 2025-07-21T10:59:10.234Z
120120
</div>
121121
<script src="../../../../../prettify.js"></script>
122122
<script>

stats/base/ndarray/scovarmtk/index.js.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -218,11 +218,11 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
218218
* var ybuf = new Float32Array( [ 2.0, -2.0, 1.0 ] );
219219
* var y = new ndarray( opts.dtype, ybuf, [ 3 ], [ 1 ], 0, 'row-major' );
220220
*
221+
* var correction = scalar2ndarray( 1.0, opts );
221222
* var meanx = scalar2ndarray( 1.0/3.0, opts );
222223
* var meany = scalar2ndarray( 1.0/3.0, opts );
223-
* var correction = scalar2ndarray( 1.0, opts );
224224
*
225-
* var v = scovarmtk( [ x, y, meanx, meany, correction ] );
225+
* var v = scovarmtk( [ x, y, correction, meanx, meany ] );
226226
* // returns ~3.8333
227227
*/
228228
&nbsp;
@@ -241,7 +241,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
241241
<div class='footer quiet pad2 space-top1 center small'>
242242
Code coverage generated by
243243
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
244-
at 2025-07-18T19:04:05.176Z
244+
at 2025-07-21T10:59:10.234Z
245245
</div>
246246
<script src="../../../../../prettify.js"></script>
247247
<script>

stats/base/ndarray/scovarmtk/main.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -286,9 +286,9 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
286286
*
287287
* - first one-dimensional input ndarray.
288288
* - second one-dimensional input ndarray.
289+
* - a zero-dimensional ndarray specifying degrees of freedom adjustment. Setting this parameter to a value other than `0` has the effect of adjusting the divisor during the calculation of the covariance according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment. When computing the population covariance, setting this parameter to `0` is the standard choice (i.e., the provided arrays contain data constituting entire populations). When computing the unbiased sample covariance, setting this parameter to `1` is the standard choice (i.e., the provided arrays contain data sampled from larger populations; this is commonly referred to as Bessel's correction).
289290
* - a zero-dimensional ndarray specifying mean of the first one-dimensional ndarray.
290291
* - a zero-dimensional ndarray specifying mean of the second one-dimensional ndarray.
291-
* - a zero-dimensional ndarray specifying degrees of freedom adjustment. Setting this parameter to a value other than `0` has the effect of adjusting the divisor during the calculation of the covariance according to `N-c` where `c` corresponds to the provided degrees of freedom adjustment. When computing the population covariance, setting this parameter to `0` is the standard choice (i.e., the provided arrays contain data constituting entire populations). When computing the unbiased sample covariance, setting this parameter to `1` is the standard choice (i.e., the provided arrays contain data sampled from larger populations; this is commonly referred to as Bessel's correction).
292292
*
293293
* @param {ArrayLikeObject&lt;Object&gt;} arrays - array-like object containing input ndarrays
294294
* @returns {number} covariance
@@ -312,7 +312,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
312312
* var meany = scalar2ndarray( 1.0/3.0, opts );
313313
* var correction = scalar2ndarray( 1.0, opts );
314314
*
315-
* var v = scovarmtk( [ x, y, meanx, meany, correction ] );
315+
* var v = scovarmtk( [ x, y, correction, meanx, meany ] );
316316
* // returns ~3.8333
317317
*/
318318
function scovarmtk( arrays ) {
@@ -325,9 +325,9 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
325325
x = arrays[ 0 ];
326326
y = arrays[ 1 ];
327327
&nbsp;
328-
meanx = ndarraylike2scalar( arrays[ 2 ] );
329-
meany = ndarraylike2scalar( arrays[ 3 ] );
330-
correction = ndarraylike2scalar( arrays[ 4 ] );
328+
correction = ndarraylike2scalar( arrays[ 2 ] );
329+
meanx = ndarraylike2scalar( arrays[ 3 ] );
330+
meany = ndarraylike2scalar( arrays[ 4 ] );
331331
&nbsp;
332332
return strided( numelDimension( x, 0 ), correction, meanx, getData( x ), getStride( x, 0 ), getOffset( x ), meany, getData( y ), getStride( y, 0 ), getOffset( y ) ); // eslint-disable-line max-len
333333
}
@@ -343,7 +343,7 @@ <h1><a href="../../../../../index.html">All files</a> / <a href="index.html">sta
343343
<div class='footer quiet pad2 space-top1 center small'>
344344
Code coverage generated by
345345
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
346-
at 2025-07-18T19:04:05.176Z
346+
at 2025-07-21T10:59:10.234Z
347347
</div>
348348
<script src="../../../../../prettify.js"></script>
349349
<script>

0 commit comments

Comments
 (0)