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/strided/mskmidrange/README.md
+3-26Lines changed: 3 additions & 26 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@ var mskmidrange = require( '@stdlib/stats/strided/mskmidrange' );
40
40
41
41
#### mskmidrange( N, x, strideX, mask, strideMask )
42
42
43
-
Computes the [mid-range][mid-range] of a strided array `x` according to a `mask`.
43
+
Computes the [mid-range][mid-range] of a strided array according to a mask.
44
44
45
45
```javascript
46
46
var x = [ 1.0, -2.0, 4.0, 2.0 ];
@@ -88,7 +88,7 @@ var v = mskmidrange( 4, x1, 2, mask1, 2 );
88
88
89
89
#### mskmidrange.ndarray( N, x, strideX, offsetX, mask, strideMask, offsetMask )
90
90
91
-
Computes the [mid-range][mid-range] of a strided array according to a `mask` and using alternative indexing semantics.
91
+
Computes the [mid-range][mid-range] of a strided array according to a mask and using alternative indexing semantics.
92
92
93
93
```javascript
94
94
var x = [ 1.0, -2.0, 4.0, 2.0 ];
@@ -103,7 +103,7 @@ The function has the following additional parameters:
103
103
-**offsetX**: starting index for `x`.
104
104
-**offsetMask**: starting index for `mask`.
105
105
106
-
While [`typed array`][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to calculate the [mid-range][mid-range] of every other value in `x` starting from the second value
106
+
While [typed array][mdn-typed-array] views mandate a view offset based on the underlying buffer, the offset parameters support indexing semantics based on starting indices. For example, to calculate the [mid-range][mid-range] of every other value in `x` starting from the second value
107
107
108
108
```javascript
109
109
var x = [ 2.0, 1.0, -2.0, -2.0, 3.0, 4.0, 5.0, 6.0 ];
@@ -162,17 +162,6 @@ console.log( v );
162
162
163
163
<sectionclass="related">
164
164
165
-
* * *
166
-
167
-
## See Also
168
-
169
-
- <spanclass="package-name">[`@stdlib/stats/strided/dmskmidrange`][@stdlib/stats/strided/dmskmidrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mid-range of a double-precision floating-point strided array according to a mask.</span>
170
-
- <spanclass="package-name">[`@stdlib/stats/strided/midrange`][@stdlib/stats/strided/midrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mid-range of a strided array.</span>
171
-
- <spanclass="package-name">[`@stdlib/stats/strided/mskmax`][@stdlib/stats/strided/mskmax]</span><spanclass="delimiter">: </span><spanclass="description">calculate the maximum value of a strided array according to a mask.</span>
172
-
- <spanclass="package-name">[`@stdlib/stats/strided/mskmin`][@stdlib/stats/strided/mskmin]</span><spanclass="delimiter">: </span><spanclass="description">calculate the minimum value of a strided array according to a mask.</span>
173
-
- <spanclass="package-name">[`@stdlib/stats/strided/nanmidrange`][@stdlib/stats/strided/nanmidrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mid-range of a strided array, ignoring NaN values.</span>
174
-
- <spanclass="package-name">[`@stdlib/stats/strided/smskmidrange`][@stdlib/stats/strided/smskmidrange]</span><spanclass="delimiter">: </span><spanclass="description">calculate the mid-range of a single-precision floating-point strided array according to a mask.</span>
0 commit comments