Skip to content

Commit 9715cea

Browse files
committed
Auto-generated commit
1 parent 1ec4d23 commit 9715cea

2 files changed

Lines changed: 5 additions & 26 deletions

File tree

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-12-13)
7+
## Unreleased (2025-12-15)
88

99
<section class="features">
1010

@@ -708,6 +708,7 @@ A total of 73 issues were closed in this release:
708708

709709
<details>
710710

711+
- [`cd063e0`](https://github.com/stdlib-js/stdlib/commit/cd063e08de61b89959085f0f1650f40c34a55929) - **docs:** update examples [(#9036)](https://github.com/stdlib-js/stdlib/pull/9036) _(by stdlib-bot)_
711712
- [`62b365f`](https://github.com/stdlib-js/stdlib/commit/62b365f072bd98518e08b00b14344143c8df521c) - **docs:** improve doctests for complex number instances in `math/base/special/cinvf` [(#9020)](https://github.com/stdlib-js/stdlib/pull/9020) _(by Aryan kumar)_
712713
- [`b15e507`](https://github.com/stdlib-js/stdlib/commit/b15e507fbb9876c64c68f883217604872a7e76c9) - **docs:** improve doctests for complex number instances in `math/base/special/cinv` [(#9024)](https://github.com/stdlib-js/stdlib/pull/9024) _(by Aryan kumar)_
713714
- [`2c59b22`](https://github.com/stdlib-js/stdlib/commit/2c59b225c1d4d2b05bc433837e1c286535783443) - **docs:** improve doctests for complex number instances in `math/base/special/cround` [(#9025)](https://github.com/stdlib-js/stdlib/pull/9025) _(by Prajjwal Bajpai, Philipp Burckhardt)_

base/special/docs/types/index.d.ts

Lines changed: 3 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2964,17 +2964,9 @@ interface Namespace {
29642964
*
29652965
* @example
29662966
* var Complex128 = require( '@stdlib/complex/float64/ctor' );
2967-
* var real = require( '@stdlib/complex/float64/real' );
2968-
* var imag = require( '@stdlib/complex/float64/imag' );
29692967
*
29702968
* var v = ns.cinv( new Complex128( 2.0, 4.0 ) );
2971-
* // returns <Complex128>
2972-
*
2973-
* var re = real( v );
2974-
* // returns 0.1
2975-
*
2976-
* var im = imag( v );
2977-
* // returns -0.2
2969+
* // returns <Complex128>[ ~0.1, ~-0.2 ]
29782970
*/
29792971
cinv: typeof cinv;
29802972

@@ -2986,17 +2978,9 @@ interface Namespace {
29862978
*
29872979
* @example
29882980
* var Complex64 = require( '@stdlib/complex/float32/ctor' );
2989-
* var realf = require( '@stdlib/complex/float32/real' );
2990-
* var imagf = require( '@stdlib/complex/float32/imag' );
29912981
*
29922982
* var v = ns.cinvf( new Complex64( 2.0, 4.0 ) );
2993-
* // returns <Complex64>
2994-
*
2995-
* var re = realf( v );
2996-
* // returns ~0.1
2997-
*
2998-
* var im = imagf( v );
2999-
* // returns ~-0.2
2983+
* // returns <Complex64>[ ~0.1, ~-0.2 ]
30002984
*/
30012985
cinvf: typeof cinvf;
30022986

@@ -3648,13 +3632,7 @@ interface Namespace {
36483632
* var imag = require( '@stdlib/complex/float64/imag' );
36493633
*
36503634
* var v = ns.cround( new Complex128( -4.2, 5.5 ) );
3651-
* // returns <Complex128>
3652-
*
3653-
* var re = real( v );
3654-
* // returns -4.0
3655-
*
3656-
* var im = imag( v );
3657-
* // returns 6.0
3635+
* // returns <Complex128>[ -4.0, 6.0 ]
36583636
*/
36593637
cround: typeof cround;
36603638

0 commit comments

Comments
 (0)