Skip to content

Commit f5ca316

Browse files
authored
Apply suggestions from code review
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 5f69d46 commit f5ca316

File tree

1 file changed

+5
-5
lines changed
  • lib/node_modules/@stdlib/stats/base/dnanvarianceyc

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/stats/base/dnanvarianceyc/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ var dnanvarianceyc = require( '@stdlib/stats/base/dnanvarianceyc' );
100100

101101
#### dnanvarianceyc( N, correction, x, strideX )
102102

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.
104104

105105
```javascript
106106
var Float64Array = require( '@stdlib/array/float64' );
@@ -147,7 +147,7 @@ var v = dnanvarianceyc( 5, 1, x1, 2 );
147147

148148
#### dnanvarianceyc.ndarray( N, correction, x, strideX, offsetX )
149149

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.
151151

152152
```javascript
153153
var Float64Array = require( '@stdlib/array/float64' );
@@ -169,7 +169,7 @@ While [`typed array`][mdn-typed-array] views mandate a view offset based on the
169169
```javascript
170170
var Float64Array = require( '@stdlib/array/float64' );
171171

172-
var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN] );
172+
var x = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
173173

174174
var v = dnanvarianceyc.ndarray( 5, 1, x, 2, 1 );
175175
// returns 6.25
@@ -248,7 +248,7 @@ console.log( v );
248248

249249
#### stdlib_strided_dnanvarianceyc( N, correction, \*X, strideX )
250250

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.
252252

253253
```c
254254
const double x[] = { 1.0, -2.0, 0.0/0.0, 2.0 };
@@ -270,7 +270,7 @@ double stdlib_strided_dnanvarianceyc( const CBLAS_INT N, const double correction
270270

271271
#### stdlib_strided_dnanvarianceyc_ndarray( N, correction, \*X, strideX, offsetX )
272272

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.
274274

275275
```c
276276
const double x[] = { 1.0, -2.0, 0.0/0.0, 2.0 };

0 commit comments

Comments
 (0)