Skip to content

Commit dcea3a6

Browse files
fix: changing shape values
1 parent 4ef4d9e commit dcea3a6

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

lib/node_modules/@stdlib/array/base/broadcasted-quinary4d/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ var shapes = [
5858
[ 1, 1, 1, 2 ],
5959
[ 1, 1, 2, 1 ],
6060
[ 1, 1, 2, 2 ],
61-
[ 1, 1, 1, 1 ],
61+
[ 1, 2, 1, 1 ],
6262
[ 2, 2, 2, 2 ],
6363
[ 2, 2, 2, 2 ]
6464
];
@@ -105,11 +105,11 @@ function add( x, y, z, w, v ) {
105105

106106
var shapes = [
107107
[ 1, 3, 3, 3 ],
108-
[ 3, 1, 1, 3 ],
109-
[ 3, 3, 1, 3 ],
110-
[ 3, 3, 3, 1 ],
111-
[ 3, 3, 3, 3 ],
112-
[ 3, 3, 3, 3 ]
108+
[ 3, 1, 1, 3 ],
109+
[ 3, 3, 1, 3 ],
110+
[ 3, 3, 3, 1 ],
111+
[ 3, 3, 3, 3 ],
112+
[ 3, 3, 3, 3 ]
113113
];
114114

115115
var x = filled4dBy( shapes[ 0 ], discreteUniform( -100, 100 ) );

lib/node_modules/@stdlib/array/base/broadcasted-quinary4d/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ type InOutShapes = [
102102
* [ 1, 1, 1, 2 ],
103103
* [ 1, 1, 2, 1 ],
104104
* [ 1, 1, 2, 2 ],
105-
* [ 1, 1, 1, 1 ],
105+
* [ 1, 2, 1, 1 ],
106106
* [ 2, 2, 2, 2 ],
107107
* [ 2, 2, 2, 2 ]
108108
* ];
@@ -114,7 +114,7 @@ type InOutShapes = [
114114
* var v = ones4d( shapes[ 4 ] );
115115
* var out = zeros4d( shapes[ 5 ] );
116116
*
117-
* bquinary2d( [ x, y, z, w, v, out ], shapes, add );
117+
* bquinary4d( [ x, y, z, w, v, out ], shapes, add );
118118
*
119119
* console.log( out );
120120
* // => [ [ [ [ 5.0, 5.0 ], [ 5.0, 5.0 ] ] ] ]

lib/node_modules/@stdlib/array/base/broadcasted-quinary4d/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ var shapes = [
3131
[ 1, 1, 1, 3 ],
3232
[ 1, 1, 3, 1 ],
3333
[ 1, 1, 3, 3 ],
34-
[ 1, 1, 1, 1 ],
34+
[ 1, 3, 1, 1 ],
3535
[ 3, 3, 3, 3 ],
3636
[ 3, 3, 3, 3 ]
3737
];

lib/node_modules/@stdlib/array/base/broadcasted-quinary4d/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* [ 1, 1, 1, 2 ],
3838
* [ 1, 1, 2, 1 ],
3939
* [ 1, 1, 2, 2 ],
40-
* [ 1, 1, 1, 1 ],
40+
* [ 1, 2, 1, 1 ],
4141
* [ 2, 2, 2, 2 ],
4242
* [ 2, 2, 2, 2 ]
4343
* ];

lib/node_modules/@stdlib/array/base/broadcasted-quinary4d/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var broadcastArray = require( '@stdlib/array/base/broadcast-array' );
4545
* [ 1, 1, 1, 2 ],
4646
* [ 1, 1, 2, 1 ],
4747
* [ 1, 1, 2, 2 ],
48-
* [ 1, 1, 1, 1 ],
48+
* [ 1, 2, 1, 1 ],
4949
* [ 2, 2, 2, 2 ],
5050
* [ 2, 2, 2, 2 ]
5151
* ];

lib/node_modules/@stdlib/array/base/broadcasted-quinary4d/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ tape( 'the function applies a provided callback to broadcasted input arrays and
7272
x = [
7373
[
7474
[
75-
[ 1.0, 2.0 ] // Shape matches the last dimension
75+
[ 1.0, 2.0 ]
7676
]
7777
]
7878
];

0 commit comments

Comments
 (0)