Skip to content

Commit 65e4ba7

Browse files
committed
Auto-generated commit
1 parent 71b6495 commit 65e4ba7

File tree

9 files changed

+9
-8
lines changed

9 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3511,6 +3511,7 @@ A total of 557 issues were closed in this release:
35113511

35123512
<details>
35133513

3514+
- [`006274e`](https://github.com/stdlib-js/stdlib/commit/006274e27badde01275e5daa80e8caeab301a787) - **test:** fix strides _(by Athan Reines)_
35143515
- [`c3faa28`](https://github.com/stdlib-js/stdlib/commit/c3faa28eb8dadcaaf61c8fed8ce87edf1f2d9aab) - **feat:** add `stats/nanmeanwd` [(#8786)](https://github.com/stdlib-js/stdlib/pull/8786) _(by Sachin Pangal, Athan Reines)_
35153516
- [`9c412c7`](https://github.com/stdlib-js/stdlib/commit/9c412c7a96d4b5381cda9be8c83f4e701155fe95) - **docs:** update related packages sections [(#8860)](https://github.com/stdlib-js/stdlib/pull/8860) _(by stdlib-bot, Athan Reines)_
35163517
- [`9ab0f17`](https://github.com/stdlib-js/stdlib/commit/9ab0f1770255e4c11d47f859316cd529a0f3dffb) - **docs:** remove unused link definition _(by Athan Reines)_

max-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10931093
var x;
10941094

10951095
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1096-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1096+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10971097

10981098
out = emptyLike( x, {
10991099
'shape': []

max-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10491049
var x;
10501050

10511051
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1052-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1052+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10531053

10541054
indices = [];
10551055
values = [];

min-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10931093
var x;
10941094

10951095
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1096-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1096+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10971097

10981098
out = emptyLike( x, {
10991099
'shape': []

min-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10491049
var x;
10501050

10511051
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1052-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1052+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10531053

10541054
indices = [];
10551055
values = [];

nanmin-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ tape( 'the function supports specifying the callback execution context (column-m
11061106
var x;
11071107

11081108
xbuf = [ -1.0, 2.0, NaN, 4.0 ];
1109-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1109+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
11101110

11111111
out = emptyLike( x, {
11121112
'shape': []

nanmin-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1086,7 +1086,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10861086
var x;
10871087

10881088
xbuf = [ -1.0, 2.0, NaN, 4.0 ];
1089-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1089+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10901090

10911091
indices = [];
10921092
values = [];

range-by/test/test.assign.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10931093
var x;
10941094

10951095
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1096-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1096+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10971097

10981098
out = emptyLike( x, {
10991099
'shape': []

range-by/test/test.main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ tape( 'the function supports specifying the callback execution context (column-m
10491049
var x;
10501050

10511051
xbuf = [ -1.0, 2.0, -3.0, 4.0 ];
1052-
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 2, 1 ], 0, 'column-major' );
1052+
x = new ndarray( 'generic', xbuf, [ 2, 2 ], [ 1, 2 ], 0, 'column-major' );
10531053

10541054
indices = [];
10551055
values = [];

0 commit comments

Comments
 (0)