Skip to content

Commit 98d9d2c

Browse files
committed
Auto-generated commit
1 parent fce384e commit 98d9d2c

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-12-07)
7+
## Unreleased (2025-12-08)
88

99
<section class="features">
1010

@@ -647,6 +647,7 @@ A total of 36 issues were closed in this release:
647647

648648
<details>
649649

650+
- [`2772189`](https://github.com/stdlib-js/stdlib/commit/2772189443aedf358ee73b3232feadd2a0acc581) - **docs:** improve doctests for complex number instances in `ndarray/base/broadcast-scalar` [(#8869)](https://github.com/stdlib-js/stdlib/pull/8869) _(by ashutoshsao, Athan Reines)_
650651
- [`ae93d82`](https://github.com/stdlib-js/stdlib/commit/ae93d8247174e8ba0a0bdcb20a14dfa6569b1542) - **docs:** add missing space _(by Philipp Burckhardt)_
651652
- [`c034ac5`](https://github.com/stdlib-js/stdlib/commit/c034ac5a8b15ac837619c50efa8db3266c897f8e) - **feat:** add `ndarray/concat1d` [(#8584)](https://github.com/stdlib-js/stdlib/pull/8584) _(by Muhammad Haris, Athan Reines)_
652653
- [`356e8a0`](https://github.com/stdlib-js/stdlib/commit/356e8a0f15db7f18f8be83272401dc90de4cc1a0) - **docs:** use boolean typed array in example _(by Philipp Burckhardt)_
@@ -1850,7 +1851,7 @@ A total of 36 issues were closed in this release:
18501851

18511852
### Contributors
18521853

1853-
A total of 26 people contributed to this release. Thank you to the following contributors:
1854+
A total of 27 people contributed to this release. Thank you to the following contributors:
18541855

18551856
- Athan Reines
18561857
- Bhavishy Agrawal
@@ -1876,6 +1877,7 @@ A total of 26 people contributed to this release. Thank you to the following con
18761877
- Sai Avinash
18771878
- Shubham
18781879
- Tushar Bhardwaj
1880+
- ashutoshsao
18791881
- kaushal-kumar-it
18801882
- lohithganni
18811883

base/broadcast-scalar/docs/types/index.d.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ declare function broadcastScalar( value: number, dtype: 'float32', shape: Shape,
9494
* var getShape = require( '@stdlib/ndarray/shape' );
9595
* var getDType = require( '@stdlib/ndarray/dtype' );
9696
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
97-
* var real = require( '@stdlib/complex/float64/real' );
98-
* var imag = require( '@stdlib/complex/float64/imag' );
9997
*
10098
* var v = new Complex128( 1.0, 2.0 );
10199
*
@@ -109,13 +107,7 @@ declare function broadcastScalar( value: number, dtype: 'float32', shape: Shape,
109107
* // returns 'complex128'
110108
*
111109
* var v = x.get( 0, 1 );
112-
* // returns <Complex128>
113-
*
114-
* var re = real( v );
115-
* // returns 1.0
116-
*
117-
* var im = imag( v );
118-
* // returns 2.0
110+
* // returns <Complex128>[ 1.0, 2.0 ]
119111
*/
120112
declare function broadcastScalar( value: number | ComplexLike, dtype: 'complex128', shape: Shape, order: Order ): complex128ndarray;
121113

0 commit comments

Comments
 (0)