Skip to content

Commit 5887520

Browse files
committed
Auto-generated commit
1 parent 8265a9a commit 5887520

File tree

5 files changed

+4
-8
lines changed

5 files changed

+4
-8
lines changed

CHANGELOG.md

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

504504
<details>
505505

506+
- [`dab9a78`](https://github.com/stdlib-js/stdlib/commit/dab9a78e04f346de096fd66b9c5129d6123aab95) - **chore:** minor clean-up _(by Philipp Burckhardt)_
506507
- [`e74334e`](https://github.com/stdlib-js/stdlib/commit/e74334e2080a9956240f376147f5d072e63e7ca0) - **feat:** add `ndarray/base/broadcast-array-except-dimensions` [(#7853)](https://github.com/stdlib-js/stdlib/pull/7853) _(by Muhammad Haris, Athan Reines)_
507508
- [`b44e0a7`](https://github.com/stdlib-js/stdlib/commit/b44e0a71e52944270193e56c6cff4507bb085144) - **docs:** clean-up TSDoc examples _(by Philipp Burckhardt)_
508509
- [`2bcc0ba`](https://github.com/stdlib-js/stdlib/commit/2bcc0ba8dc6a3eee179e5e556bf4171afd35d3cf) - **feat:** add missing exports to `ndarray` namespaces _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ Frank Kovacs <fran70kk@gmail.com>
6666
GK Bishnoi <gkishan1kyt@gmail.com>
6767
GURU PRASAD SHARMA <168292003+GURUPRASADSHARMA@users.noreply.github.com>
6868
Gaurav <gaurav70380@gmail.com>
69+
Gaurav Kaushik <144526331+Gauravkaushik-1206@users.noreply.github.com>
6970
Gautam Kaushik <162317291+Kaushikgtm@users.noreply.github.com>
7071
Gautam sharma <gautamkrishnasharma1@gmail.com>
7172
GeoDaoyu <geodaoyu@foxmail.com>

base/broadcast-array-except-dimensions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var broadcastArrayExceptDimensions = require( '@stdlib/ndarray/base/broadcast-ar
105105
var x = array( [ [ 1, 2, 3 ] ] );
106106
// returns <ndarray>
107107

108-
// Broadcast the array to 3x2x2:
108+
// Broadcast the array to 2x1x3:
109109
var y = broadcastArrayExceptDimensions( x, [ 2, 2, 3 ], [ -2 ] );
110110
// returns <ndarray>
111111

base/broadcast-array-except-dimensions/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import { typedndarray } from '@stdlib/types/ndarray';
5353
* var shx = getShape( x );
5454
* // returns [ 1, 3 ]
5555
*
56-
* var y = broadcastArrayExceptDimensionsExceptDimensions( x, [ 2, 2, 3 ], [ -2 ] );
56+
* var y = broadcastArrayExceptDimensions( x, [ 2, 2, 3 ], [ -2 ] );
5757
* // returns <ndarray>
5858
*
5959
* var shy = getShape( y );

base/broadcast-array-except-dimensions/test/test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -392,12 +392,6 @@ tape( 'the function broadcasts an input array (same number of dimensions)', func
392392

393393
v = y.get( i, 0, 1 );
394394
t.strictEqual( v, x.get( i, 0, 1 ), 'returns expected value for element ('+i+',0,1)' );
395-
396-
v = y.get( i, 0, 0 );
397-
t.strictEqual( v, x.get( i, 0, 0 ), 'returns expected value for element ('+i+',0,0)' );
398-
399-
v = y.get( i, 0, 1 );
400-
t.strictEqual( v, x.get( i, 0, 1 ), 'returns expected value for element ('+i+',0,1)' );
401395
}
402396
t.end();
403397
});

0 commit comments

Comments
 (0)