Skip to content

Commit 2482c79

Browse files
committed
Auto-generated commit
1 parent 4fcc374 commit 2482c79

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

CHANGELOG.md

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

100100
<details>
101101

102+
- [`4d295c9`](https://github.com/stdlib-js/stdlib/commit/4d295c9c9c7d47ed6b9ba728a5f0f70da2338905) - **docs:** improve doctests for complex number instances in `lapack/base/claset` [(#8976)](https://github.com/stdlib-js/stdlib/pull/8976) _(by Divyanshu, Athan Reines)_
102103
- [`39ae040`](https://github.com/stdlib-js/stdlib/commit/39ae04030bb6dd7785b0d5c60846623815c6818b) - **docs:** improve doctests for complex number instances in `lapack/base/claset` [(#8950)](https://github.com/stdlib-js/stdlib/pull/8950) _(by Sagar Ratna Chaudhary)_
103104
- [`1dcf101`](https://github.com/stdlib-js/stdlib/commit/1dcf1013f5f6b583f11aa4f33750a549114de858) - **docs:** update example code in namespace TSDoc declarations _(by Philipp Burckhardt)_
104105
- [`ba34b1b`](https://github.com/stdlib-js/stdlib/commit/ba34b1bfec58f8f265747b73d05a319cde3405e4) - **docs:** improve doctests for complex number instances in `lapack/base/zlacpy` [(#8776)](https://github.com/stdlib-js/stdlib/pull/8776) _(by Sagar Ratna Chaudhary)_

base/claset/docs/repl.txt

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,8 @@
4646
> var alpha = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
4747
> var beta = new {{alias:@stdlib/complex/float32/ctor}}( 3.0, 4.0 );
4848
> {{alias}}( 'row-major', 'all', 2, 2, alpha, beta, A, 2 );
49-
> var z = A.get( 0 );
50-
> {{alias:@stdlib/complex/float32/real}}( z )
51-
3.0
52-
> {{alias:@stdlib/complex/float32/imag}}( z )
53-
4.0
49+
> var z = A.get( 0 )
50+
<Complex64>[ 3.0, 4.0 ]
5451

5552

5653
{{alias}}.ndarray( uplo, M, N, alpha, beta, A, sa1, sa2, oa )
@@ -103,11 +100,8 @@
103100
> var alpha = new {{alias:@stdlib/complex/float32/ctor}}( 1.0, 2.0 );
104101
> var beta = new {{alias:@stdlib/complex/float32/ctor}}( 3.0, 4.0 );
105102
> {{alias}}.ndarray( 'all', 2, 2, alpha, beta, A, 2, 1, 1 );
106-
> var z = A.get( 1 );
107-
> {{alias:@stdlib/complex/float32/real}}( z )
108-
3.0
109-
> {{alias:@stdlib/complex/float32/imag}}( z )
110-
4.0
103+
> var z = A.get( 1 )
104+
<Complex64>[ 3.0, 4.0 ]
111105

112106
See Also
113107
--------

0 commit comments

Comments
 (0)