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/dnanvarianceyc/README.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ var dnanvarianceyc = require( '@stdlib/stats/base/dnanvarianceyc' );
100
100
101
101
#### dnanvarianceyc( N, correction, x, strideX )
102
102
103
-
Computes the [variance][variance] of a double-precision floating-point strided array`x` ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.
103
+
Computes the [variance][variance] of a double-precision floating-point strided array, ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.
@@ -147,7 +147,7 @@ var v = dnanvarianceyc( 5, 1, x1, 2 );
147
147
148
148
#### dnanvarianceyc.ndarray( N, correction, x, strideX, offsetX )
149
149
150
-
Computes the [variance][variance] of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer and alternative indexing semantics.
150
+
Computes the [variance][variance] of a double-precision floating-point strided array, ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer and alternative indexing semantics.
var x =newFloat64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN] );
172
+
var x =newFloat64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN] );
173
173
174
174
var v =dnanvarianceyc.ndarray( 5, 1, x, 2, 1 );
175
175
// returns 6.25
@@ -248,7 +248,7 @@ console.log( v );
248
248
249
249
#### stdlib_strided_dnanvarianceyc( N, correction, \*X, strideX )
250
250
251
-
Computes the [variance][variance] of a double-precision floating-point strided array`x` ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.
251
+
Computes the [variance][variance] of a double-precision floating-point strided array, ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer.
#### stdlib_strided_dnanvarianceyc_ndarray( N, correction, \*X, strideX, offsetX )
272
272
273
-
Computes the [variance][variance] of a double-precision floating-point strided array ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer and alternative indexing semantics.
273
+
Computes the [variance][variance] of a double-precision floating-point strided array, ignoring `NaN` values and using a one-pass algorithm proposed by Youngs and Cramer and alternative indexing semantics.
0 commit comments