Skip to content

Commit 02c77a6

Browse files
committed
Auto-generated commit
1 parent 11c31f7 commit 02c77a6

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

CHANGELOG.md

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

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

99
<section class="features">
1010

@@ -20,9 +20,9 @@
2020

2121
### Closed Issues
2222

23-
This release closes the following issue:
23+
A total of 2 issues were closed in this release:
2424

25-
[#5430](https://github.com/stdlib-js/stdlib/issues/5430)
25+
[#5430](https://github.com/stdlib-js/stdlib/issues/5430), [#5718](https://github.com/stdlib-js/stdlib/issues/5718)
2626

2727
</section>
2828

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`2e43df0`](https://github.com/stdlib-js/stdlib/commit/2e43df04b30107baae137ed29552ae3cd9de4add) - **chore:** address commit comments [(#5744)](https://github.com/stdlib-js/stdlib/pull/5744) _(by Dhruvil Mehta)_
3738
- [`a1c366a`](https://github.com/stdlib-js/stdlib/commit/a1c366a395fd46fde193bad73bac162daf90389b) - **chore:** address commit comments [(#5492)](https://github.com/stdlib-js/stdlib/pull/5492) _(by Harsh, Neeraj Pathak)_
3839
- [`00b23b3`](https://github.com/stdlib-js/stdlib/commit/00b23b3cb5b4e72bf977a9ac170062f8e8614ef1) - **feat:** add C ndarray interface and refactor implementation for `stats/base/dnanvariancech` [(#4803)](https://github.com/stdlib-js/stdlib/pull/4803) _(by Prashant Kumar Yadav)_
3940
- [`ca5cd8e`](https://github.com/stdlib-js/stdlib/commit/ca5cd8eda51ba2c274b9aeb0161f6c1cdf6a3e09) - **refactor:** update `stats/base/dnanvariancech` native addon from C++ to C [(#4719)](https://github.com/stdlib-js/stdlib/pull/4719) _(by Prashant Kumar Yadav)_
@@ -52,9 +53,10 @@ This release closes the following issue:
5253

5354
### Contributors
5455

55-
A total of 5 people contributed to this release. Thank you to the following contributors:
56+
A total of 6 people contributed to this release. Thank you to the following contributors:
5657

5758
- Athan Reines
59+
- Dhruvil Mehta
5860
- Harsh
5961
- Neeraj Pathak
6062
- Philipp Burckhardt

CONTRIBUTORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Aditya Sapra <[email protected]>
1111
Ahmed Atwa <[email protected]>
1212
Ahmed Kashkoush <[email protected]>
1313
Ahmed Khaled <[email protected]>
14+
Aksshay Balasubramanian <[email protected]>
1415
Aleksandr <[email protected]>
1516
Ali Salesi <[email protected]>
1617
Aman Bhansali <[email protected]>
@@ -38,6 +39,7 @@ EuniceSim142 <[email protected]>
3839
Frank Kovacs <[email protected]>
3940
GK Bishnoi <[email protected]>
4041
42+
Gautam sharma <[email protected]>
4143
Golden Kumar <[email protected]>
4244
Gunj Joshi <[email protected]>
4345
Gururaj Gurram <[email protected]>
@@ -46,6 +48,7 @@ HarshaNP <[email protected]>
4648
Harshita Kalani <[email protected]>
4749
Hridyanshu <[email protected]>
4850
Jaimin Godhani <[email protected]>
51+
Jalaj Kumar <[email protected]>
4952
James Gelok <[email protected]>
5053
Jaysukh Makvana <[email protected]>
5154
Jenish Thapa <[email protected]>
@@ -55,6 +58,7 @@ Joey Reed <[email protected]>
5558
Jordan Gallivan <[email protected]>
5659
Joris Labie <[email protected]>
5760
Justin Dennison <[email protected]>
61+
Justyn Shelby <[email protected]>
5862
Karan Anand <[email protected]>
5963
Karthik Prakash <[email protected]>
6064
Kohantika Nath <[email protected]>
@@ -133,10 +137,13 @@ Vivek Maurya <[email protected]>
133137
Xiaochuan Ye <[email protected]>
134138
Yaswanth Kosuru <[email protected]>
135139
Yernar Yergaziyev <[email protected]>
140+
Yugal Kaushik <[email protected]>
136141
Yuvi Mittal <[email protected]>
142+
137143
ekambains <[email protected]>
138144
fadiothman22 <[email protected]>
139145
olenkabilonizhka <[email protected]>
140146
pranav-1720 <[email protected]>
147+
rahulrangers <[email protected]>
141148
142149

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ Note that indexing is relative to the first index. To introduce an offset, use [
170170

171171
```javascript
172172
var Float64Array = require( '@stdlib/array-float64' );
173-
var x0 = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] ); // eslint-disable-line max-len
173+
174+
var x0 = new Float64Array( [ 2.0, 1.0, 2.0, -2.0, -2.0, 2.0, 3.0, 4.0, NaN, NaN ] );
174175
var x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 ); // start at 2nd element
175176

176177
var v = dnanvariancech( 5, 1, x1, 2 );

0 commit comments

Comments
 (0)