Skip to content

Commit c87619c

Browse files
committed
Update artifacts
1 parent 268f95a commit c87619c

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

stats/base/nanvariancech/accessors.js.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -362,8 +362,8 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
362362
* // returns 6.25
363363
*/
364364
function nanvariancech( N, correction, x, strideX, offsetX ) {
365-
var xget;
366365
var xbuf;
366+
var get;
367367
var mu;
368368
var ix;
369369
var M2;
@@ -378,10 +378,10 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
378378
xbuf = x.data;
379379
&nbsp;
380380
// Cache references to element accessors:
381-
xget = x.accessors[ 0 ];
381+
get = x.accessors[ 0 ];
382382
&nbsp;
383383
if ( N === 1 || strideX === 0 ) {
384-
v = xget( xbuf, offsetX );
384+
v = get( xbuf, offsetX );
385385
if ( v === v &amp;&amp; N-correction &gt; 0.0 ) {
386386
return 0.0;
387387
}
@@ -391,7 +391,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
391391
&nbsp;
392392
// Find an estimate for the mean...
393393
for ( i = 0; i &lt; N; i++ ) {
394-
v = xget( xbuf, ix );
394+
v = get( xbuf, ix );
395395
if ( v === v ) {
396396
mu = v;
397397
break;
@@ -409,7 +409,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
409409
M = 0.0;
410410
n = 1;
411411
for ( i; i &lt; N; i++ ) {
412-
v = xget( xbuf, ix );
412+
v = get( xbuf, ix );
413413
if ( v === v ) {
414414
d = v - mu;
415415
M2 += d * d;
@@ -436,7 +436,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
436436
<div class='footer quiet pad2 space-top1 center small'>
437437
Code coverage generated by
438438
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
439-
at 2025-06-12T11:59:25.681Z
439+
at 2025-06-12T12:03:15.233Z
440440
</div>
441441
<script src="../../../../prettify.js"></script>
442442
<script>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
[366,366,100,44,44,100,3,3,100,366,366,100,"b2c551e6410bf0f8f28c12ddd7662ba17d82a7d7","2025-06-12 11:57:47 +0000"]
1+
[366,366,100,44,44,100,3,3,100,366,366,100,"40d18bbf543ba691c3cbe4c36cf6c29f874a4c27","2025-06-12 12:01:37 +0000"]

stats/base/nanvariancech/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ <h1><a href="../../../../index.html">All files</a> stats/base/nanvariancech/lib<
146146
<div class='footer quiet pad2 space-top1 center small'>
147147
Code coverage generated by
148148
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
149-
at 2025-06-12T11:59:25.681Z
149+
at 2025-06-12T12:03:15.233Z
150150
</div>
151151
<script src="../../../../prettify.js"></script>
152152
<script>

stats/base/nanvariancech/index.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
211211
*
212212
* var x = [ 1.0, -2.0, NaN, 2.0 ];
213213
*
214-
* var v = nanvariancech( 4, 1, x, 1 );
214+
* var v = nanvariancech( x.length, 1, x, 1 );
215215
* // returns ~4.3333
216216
*
217217
* @example
@@ -247,7 +247,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
247247
<div class='footer quiet pad2 space-top1 center small'>
248248
Code coverage generated by
249249
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
250-
at 2025-06-12T11:59:25.681Z
250+
at 2025-06-12T12:03:15.233Z
251251
</div>
252252
<script src="../../../../prettify.js"></script>
253253
<script>

stats/base/nanvariancech/main.js.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
238238
* @example
239239
* var x = [ 1.0, -2.0, NaN, 2.0 ];
240240
*
241-
* var v = nanvariancech( 4, 1, x, 1 );
241+
* var v = nanvariancech( x.length, 1, x, 1 );
242242
* // returns ~4.3333
243243
*/
244244
function nanvariancech( N, correction, x, strideX ) {
@@ -256,7 +256,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
256256
<div class='footer quiet pad2 space-top1 center small'>
257257
Code coverage generated by
258258
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
259-
at 2025-06-12T11:59:25.681Z
259+
at 2025-06-12T12:03:15.233Z
260260
</div>
261261
<script src="../../../../prettify.js"></script>
262262
<script>

stats/base/nanvariancech/ndarray.js.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ <h1><a href="../../../../index.html">All files</a> / <a href="index.html">stats/
439439
<div class='footer quiet pad2 space-top1 center small'>
440440
Code coverage generated by
441441
<a href="https://istanbul.js.org/" target="_blank" rel="noopener noreferrer">istanbul</a>
442-
at 2025-06-12T11:59:25.681Z
442+
at 2025-06-12T12:03:15.233Z
443443
</div>
444444
<script src="../../../../prettify.js"></script>
445445
<script>

0 commit comments

Comments
 (0)