Skip to content

Commit a20dfba

Browse files
chore: max-len
1 parent 1a258ab commit a20dfba

File tree

1 file changed

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

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ The function has the following parameters:
7070
- **x**: input [`Float32Array`][@stdlib/array/float32].
7171
- **strideX**: stride length for `x`.
7272

73+
<!-- eslint-disable max-len -->
74+
7375
The `N` and stride parameters determine which elements in the strided array are accessed at runtime. For example, to compute the [arithmetic mean][arithmetic-mean] of every other element in `x`,
7476

7577
```javascript
@@ -83,7 +85,7 @@ var v = dsnanmean( 5, x, 2 );
8385

8486
Note that indexing is relative to the first index. To introduce an offset, use [`typed array`][mdn-typed-array] views.
8587

86-
<!-- eslint-disable stdlib/capitalized-comments -->
88+
<!-- eslint-disable stdlib/capitalized-comments, max len -->
8789

8890
```javascript
8991
var Float32Array = require( '@stdlib/array/float32' );
@@ -115,6 +117,8 @@ The function has the following additional parameters:
115117

116118
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameter supports indexing semantics based on a starting index. For example, to calculate the [arithmetic mean][arithmetic-mean] for every other element in `x` starting from the second element
117119

120+
<!-- eslint-disable max-len -->
121+
118122
```javascript
119123
var Float32Array = require( '@stdlib/array/float32' );
120124

0 commit comments

Comments
 (0)