Skip to content

Commit 3f84d92

Browse files
committed
Auto-generated commit
1 parent a60c403 commit 3f84d92

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

CHANGELOG.md

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

7-
## Unreleased (2026-03-08)
7+
## Unreleased (2026-03-09)
88

99
<section class="features">
1010

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

2323
<details>
2424

25+
- [`5bc6fd8`](https://github.com/stdlib-js/stdlib/commit/5bc6fd859d57bf2408ab4fd8459389ae07e9a253) - **chore:** minor clean-up _(by Philipp Burckhardt)_
2526
- [`6b97f56`](https://github.com/stdlib-js/stdlib/commit/6b97f569bd1dbf7f00d80d636404afbc43a53c8c) - **feat:** add `stats/base/ndarray/snanmskmidrange` [(#9536)](https://github.com/stdlib-js/stdlib/pull/9536) _(by Sachin Pangal, Philipp Burckhardt, stdlib-bot)_
2627

2728
</details>

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,7 @@ var v = snanmskmidrange( [ x, mask ] );
9292

9393
The function has the following parameters:
9494

95-
- **arrays**: array-like object containing an input ndarray and a mask ndarray.
96-
97-
If a `mask` array element is `0`, the corresponding element in the input ndarray is considered valid and **included** in computation. If a `mask` array element is `1`, the corresponding element in the input ndarray is considered invalid/missing and **excluded** from computation.
95+
- **arrays**: array-like object containing a one-dimensional input ndarray and a one-dimensional mask ndarray.
9896

9997
</section>
10098

@@ -104,6 +102,7 @@ If a `mask` array element is `0`, the corresponding element in the input ndarray
104102

105103
## Notes
106104

105+
- If a mask array element is `0`, the corresponding element in the input ndarray is considered valid and **included** in computation. If a mask array element is `1`, the corresponding element in the input ndarray is considered invalid/missing and **excluded** from computation.
107106
- If provided an empty ndarray or a mask with all elements set to `1`, the function returns `NaN`.
108107

109108
</section>

benchmark/benchmark.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ function createBenchmark( len ) {
6464

6565
return benchmark;
6666

67-
6867
/**
6968
* Benchmark function.
7069
*

0 commit comments

Comments
 (0)