Skip to content

Commit 13cb3da

Browse files
committed
Auto-generated commit
1 parent 423c140 commit 13cb3da

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

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 (2025-03-25)
7+
## Unreleased (2025-04-02)
88

99
<section class="features">
1010

@@ -36,6 +36,7 @@
3636

3737
<details>
3838

39+
- [`3c02758`](https://github.com/stdlib-js/stdlib/commit/3c0275829751a0bc40a3573fa5175e6a100d6277) - **docs:** update REPL namespace documentation [(#6505)](https://github.com/stdlib-js/stdlib/pull/6505) _(by stdlib-bot)_
3940
- [`26df9b1`](https://github.com/stdlib-js/stdlib/commit/26df9b11112500578d57913e239006f758677d87) - **docs:** update REPL namespace documentation [(#6358)](https://github.com/stdlib-js/stdlib/pull/6358) _(by stdlib-bot)_
4041
- [`1aa6f0f`](https://github.com/stdlib-js/stdlib/commit/1aa6f0f0ca8b33af12fea9d5546ee7f88aea4045) - **docs:** update REPL namespace documentation [(#6338)](https://github.com/stdlib-js/stdlib/pull/6338) _(by stdlib-bot)_
4142
- [`3d9933c`](https://github.com/stdlib-js/stdlib/commit/3d9933c64e0b7bb95251b3425b046cf0af8036b2) - **docs:** update REPL namespace documentation [(#6316)](https://github.com/stdlib-js/stdlib/pull/6316) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,10 @@ Rutam Kathale <138517416+performant23@users.noreply.github.com>
130130
Ruthwik Chikoti <145591715+ruthwikchikoti@users.noreply.github.com>
131131
Ryan Seal <splrk@users.noreply.github.com>
132132
Rylan Yang <137365285+rylany27@users.noreply.github.com>
133+
SAHIL KUMAR <168997976+sahilk45@users.noreply.github.com>
133134
SHIVAM YADAV <120725381+Shivam-1827@users.noreply.github.com>
135+
Sahil Goyal <87982509+sahil20021008@users.noreply.github.com>
136+
Sai Avinash <120403424+nasarobot@users.noreply.github.com>
134137
Sai Srikar Dumpeti <80447788+the-r3aper7@users.noreply.github.com>
135138
Sanchay Ketan Sinha <122982233+satansin123@users.noreply.github.com>
136139
Sarthak Paandey <145528240+SarthakPaandey@users.noreply.github.com>
@@ -168,6 +171,7 @@ Yuvi Mittal <128018763+yuvi-mittal@users.noreply.github.com>
168171
ditsu <170345142+ditsus@users.noreply.github.com>
169172
ekambains <bainsinbusiness@gmail.com>
170173
fadiothman22 <48636283+fadiothman22@users.noreply.github.com>
174+
lohithganni <116790357+lohithganni@users.noreply.github.com>
171175
olenkabilonizhka <62379231+olenkabilonizhka@users.noreply.github.com>
172176
pranav-1720 <123018993+pranav-1720@users.noreply.github.com>
173177
rahulrangers <127782777+rahulrangers@users.noreply.github.com>

data/data.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2114,8 +2114,8 @@ base.strided.meankbn2,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.meankbn2( x.len
21142114
base.strided.meankbn2.ndarray,"var x =[ 1.0, -2.0, 2.0 ];\nbase.strided.meankbn2.ndarray( x.length, x, 1, 0 )\nvar x = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nbase.strided.meankbn2.ndarray( N, x, 2, 1 )\n"
21152115
base.strided.meanors,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.meanors( x.length, x, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nvar stride = 2;\nbase.strided.meanors( N, x, stride )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nN = base.floor( x0.length / 2 );\nstride = 2;\nbase.strided.meanors( N, x1, stride )\n"
21162116
base.strided.meanors.ndarray,"var x =[ 1.0, -2.0, 2.0 ];\nbase.strided.meanors.ndarray( x.length, x, 1, 0 )\nvar x = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nbase.strided.meanors.ndarray( N, x, 2, 1 )\n"
2117-
base.strided.meanpn,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.meanpn( x.length, x, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nvar stride = 2;\nbase.strided.meanpn( N, x, stride )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nN = base.floor( x0.length / 2 );\nstride = 2;\nbase.strided.meanpn( N, x1, stride )\n"
2118-
base.strided.meanpn.ndarray,"var x =[ 1.0, -2.0, 2.0 ];\nbase.strided.meanpn.ndarray( x.length, x, 1, 0 )\nvar x = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nbase.strided.meanpn.ndarray( N, x, 2, 1 )\n"
2117+
base.strided.meanpn,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.meanpn( x.length, x, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\nbase.strided.meanpn( 3, x, 2 )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nbase.strided.meanpn( 3, x1, 2 )\n"
2118+
base.strided.meanpn.ndarray,"var x =[ 1.0, -2.0, 2.0 ];\nbase.strided.meanpn.ndarray( x.length, x, 1, 0 )\nvar x = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nbase.strided.meanpn.ndarray( 3, x, 2, 1 )\n"
21192119
base.strided.meanpw,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.meanpw( x.length, x, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nvar stride = 2;\nbase.strided.meanpw( N, x, stride )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nN = base.floor( x0.length / 2 );\nstride = 2;\nbase.strided.meanpw( N, x1, stride )\n"
21202120
base.strided.meanpw.ndarray,"var x =[ 1.0, -2.0, 2.0 ];\nbase.strided.meanpw.ndarray( x.length, x, 1, 0 )\nvar x = [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ];\nvar N = base.floor( x.length / 2 );\nbase.strided.meanpw.ndarray( N, x, 2, 1 )\n"
21212121
base.strided.meanwd,"var x = [ 1.0, -2.0, 2.0 ];\nbase.strided.meanwd( x.length, x, 1 )\nx = [ -2.0, 1.0, 1.0, -5.0, 2.0, -1.0 ];\nbase.strided.meanwd( 3, x, 2 )\nvar x0 = new Float64Array( [ 1.0, -2.0, 3.0, 2.0, 5.0, -1.0 ] );\nvar x1 = new Float64Array( x0.buffer, x0.BYTES_PER_ELEMENT*1 );\nbase.strided.meanwd( 3, x1, 2 )\n"

data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)