Skip to content

Commit 7b35894

Browse files
committed
Auto-generated commit
1 parent 7ab7e7a commit 7b35894

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-12-03)
7+
## Unreleased (2025-12-04)
88

99
<section class="features">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`32672ca`](https://github.com/stdlib-js/stdlib/commit/32672ca6f9c3e8ef435c456e49eebe190f36967a) - **docs:** minor clean-up _(by Philipp Burckhardt)_
2526
- [`bd98a13`](https://github.com/stdlib-js/stdlib/commit/bd98a130f38167a7b0ca3726407f854703895c73) - **feat:** add `stats/base/ndarray/smskrange` [(#8715)](https://github.com/stdlib-js/stdlib/pull/8715) _(by Kaustubh Patange, Athan Reines)_
2627

2728
</details>
@@ -34,10 +35,11 @@
3435

3536
### Contributors
3637

37-
A total of 2 people contributed to this release. Thank you to the following contributors:
38+
A total of 3 people contributed to this release. Thank you to the following contributors:
3839

3940
- Athan Reines
4041
- Kaustubh Patange
42+
- Philipp Burckhardt
4143

4244
</section>
4345

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ var uniform = require( '@stdlib/random-array-uniform' );
121121
var bernoulli = require( '@stdlib/random-array-bernoulli' );
122122
var ndarray = require( '@stdlib/ndarray-base-ctor' );
123123
var ndarray2array = require( '@stdlib/ndarray-to-array' );
124-
var mskrange = require( '@stdlib/stats-base-ndarray-mskrange' );
124+
var smskrange = require( '@stdlib/stats-base-ndarray-smskrange' );
125125

126126
var xbuf = uniform( 10, -50.0, 50.0, {
127127
'dtype': 'float32'
@@ -135,7 +135,7 @@ var maskbuf = bernoulli( xbuf.length, 0.2, {
135135
var mask = new ndarray( 'uint8', maskbuf, [ maskbuf.length ], [ 1 ], 0, 'row-major' );
136136
console.log( ndarray2array( mask ) );
137137

138-
var v = mskrange( [ x, mask ] );
138+
var v = smskrange( [ x, mask ] );
139139
console.log( v );
140140
```
141141

0 commit comments

Comments
 (0)