Skip to content

Commit 4c9f637

Browse files
committed
Auto-generated commit
1 parent 43ddb5f commit 4c9f637

File tree

8 files changed

+14
-72
lines changed

8 files changed

+14
-72
lines changed

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-06-02)
7+
## Unreleased (2025-06-09)
88

99
<section class="features">
1010

@@ -34,6 +34,7 @@ This release closes the following issue:
3434

3535
<details>
3636

37+
- [`568a25d`](https://github.com/stdlib-js/stdlib/commit/568a25d9a472197659a97d53e7c27cbe455f1bbe) - **docs:** update examples for `complex/float32/base/mul` [(#7290)](https://github.com/stdlib-js/stdlib/pull/7290) _(by Shabareesh Shetty)_
3738
- [`b228bf3`](https://github.com/stdlib-js/stdlib/commit/b228bf31d96eacac782648edf8c29141d094a59b) - **docs:** update comments _(by Athan Reines)_
3839
- [`3b08499`](https://github.com/stdlib-js/stdlib/commit/3b08499dcdae21f946e61da757c0c21da2e8f9ed) - **docs:** change package naming and examples for `complex/float32/base/mul` [(#7167)](https://github.com/stdlib-js/stdlib/pull/7167) _(by Shabareesh Shetty)_
3940
- [`a1e230f`](https://github.com/stdlib-js/stdlib/commit/a1e230f29297caa89880e9c194c615a0400fb7bc) - **chore:** clean up cppcheck-suppress comments _(by Karan Anand)_

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ AlyAbdelmoneim <[email protected]>
2222
Aman Bhansali <[email protected]>
2323
AmanBhadkariya <[email protected]>
2424
Amit Jimiwal <[email protected]>
25+
Annamalai Prabu <[email protected]>
2526
Anshu Kumar <[email protected]>
2627
Anshu Kumar <[email protected]>
2728
Anudeep Sanapala <[email protected]>
@@ -38,6 +39,7 @@ Daniel Killenberger <[email protected]>
3839
Daniel Yu <[email protected]>
3940
Debashis Maharana <[email protected]>
4041
Deep Trivedi <[email protected]>
42+
Deepak Singh <[email protected]>
4143
Desh Deepak Kant <[email protected]>
4244
4345
Dhanyabad behera <[email protected]>
@@ -53,6 +55,7 @@ Frank Kovacs <[email protected]>
5355
GK Bishnoi <[email protected]>
5456
GURU PRASAD SHARMA <[email protected]>
5557
58+
Gautam Kaushik <[email protected]>
5659
Gautam sharma <[email protected]>
5760
Girish Garg <[email protected]>
5861
Golden Kumar <[email protected]>
@@ -118,6 +121,7 @@ Ognjen Jevremović <[email protected]>
118121
Oneday12323 <[email protected]>
119122
Ori Miles <[email protected]>
120123
Philipp Burckhardt <[email protected]>
124+
Pierre Forstmann <[email protected]>
121125
Prajjwal Bajpai <[email protected]>
122126
Prajwal Kulkarni <[email protected]>
123127
Pranav Goswami <[email protected]>

README.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,12 @@ Multiples two single-precision complex floating-point numbers.
7575

7676
```javascript
7777
var Complex64 = require( '@stdlib/complex-float32-ctor' );
78-
var realf = require( '@stdlib/complex-float32-real' );
79-
var imagf = require( '@stdlib/complex-float32-imag' );
8078

8179
var z1 = new Complex64( 5.0, 3.0 );
8280
var z2 = new Complex64( -2.0, 1.0 );
8381

8482
var v = mul( z1, z2 );
85-
// returns <Complex64>
86-
87-
var re = realf( v );
88-
// returns -13.0
89-
90-
var im = imagf( v );
91-
// returns -1.0
83+
// returns <Complex64>[ -13.0, -1.0 ]
9284
```
9385

9486
#### mul.assign( re1, im1, re2, im2, out, strideOut, offsetOut )

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/types/index.d.ts

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,12 @@ interface Mul {
3636
*
3737
* @example
3838
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
39-
* var realf = require( '@stdlib/complex-float32-real' );
40-
* var imagf = require( '@stdlib/complex-float32-imag' );
4139
*
4240
* var z1 = new Complex64( 5.0, 3.0 );
43-
* // returns <Complex64>
44-
*
4541
* var z2 = new Complex64( -2.0, 1.0 );
46-
* // returns <Complex64>
4742
*
4843
* var out = mul( z1, z2 );
49-
* // returns <Complex64>
50-
*
51-
* var re = realf( out );
52-
* // returns -13.0
53-
*
54-
* var im = imagf( out );
55-
* // returns -1.0
44+
* // returns <Complex64>[ -13.0, -1.0 ]
5645
*/
5746
( z1: Complex64, z2: Complex64 ): Complex64;
5847

@@ -115,23 +104,12 @@ interface Mul {
115104
*
116105
* @example
117106
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
118-
* var realf = require( '@stdlib/complex-float32-real' );
119-
* var imagf = require( '@stdlib/complex-float32-imag' );
120107
*
121108
* var z1 = new Complex64( 5.0, 3.0 );
122-
* // returns <Complex64>
123-
*
124109
* var z2 = new Complex64( -2.0, 1.0 );
125-
* // returns <Complex64>
126110
*
127111
* var out = mul( z1, z2 );
128-
* // returns <Complex64>
129-
*
130-
* var re = realf( out );
131-
* // returns -13.0
132-
*
133-
* var im = imagf( out );
134-
* // returns -1.0
112+
* // returns <Complex64>[ -13.0, -1.0 ]
135113
*
136114
* @example
137115
* var Float32Array = require( '@stdlib/array-float32' );

lib/index.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,13 @@
2525
*
2626
* @example
2727
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
28-
* var realf = require( '@stdlib/complex-float32-real' );
29-
* var imagf = require( '@stdlib/complex-float32-imag' );
3028
* var mul = require( '@stdlib/complex-float32-base-mul' );
3129
*
3230
* var z1 = new Complex64( 5.0, 3.0 );
33-
* // returns <Complex64>
34-
*
3531
* var z2 = new Complex64( -2.0, 1.0 );
36-
* // returns <Complex64>
3732
*
3833
* var out = mul( z1, z2 );
39-
* // returns <Complex64>
40-
*
41-
* var re = realf( out );
42-
* // returns -13.0
43-
*
44-
* var im = imagf( out );
45-
* // returns -1.0
34+
* // returns <Complex64>[ -13.0, -1.0 ]
4635
*/
4736

4837
// MODULES //

lib/main.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,12 @@ var imagf = require( '@stdlib/complex-float32-imag' );
3737
*
3838
* @example
3939
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
40-
* var realf = require( '@stdlib/complex-float32-real' );
41-
* var imagf = require( '@stdlib/complex-float32-imag' );
4240
*
4341
* var z1 = new Complex64( 5.0, 3.0 );
44-
* // returns <Complex64>
45-
*
4642
* var z2 = new Complex64( -2.0, 1.0 );
47-
* // returns <Complex64>
4843
*
4944
* var out = mul( z1, z2 );
50-
* // returns <Complex64>
51-
*
52-
* var re = realf( out );
53-
* // returns -13.0
54-
*
55-
* var im = imagf( out );
56-
* // returns -1.0
45+
* // returns <Complex64>[ -13.0, -1.0 ]
5746
*/
5847
function mul( z1, z2 ) {
5948
var re1 = realf( z1 );

lib/native.js

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -36,23 +36,12 @@ var addon = require( './../src/addon.node' );
3636
*
3737
* @example
3838
* var Complex64 = require( '@stdlib/complex-float32-ctor' );
39-
* var realf = require( '@stdlib/complex-float32-real' );
40-
* var imagf = require( '@stdlib/complex-float32-imag' );
4139
*
4240
* var z1 = new Complex64( 5.0, 3.0 );
43-
* // returns <Complex64>
44-
*
4541
* var z2 = new Complex64( -2.0, 1.0 );
46-
* // returns <Complex64>
4742
*
4843
* var out = mul( z1, z2 );
49-
* // returns <Complex64>
50-
*
51-
* var re = realf( out );
52-
* // returns -13.0
53-
*
54-
* var im = imagf( out );
55-
* // returns -1.0
44+
* // returns <Complex64>[ -13.0, -1.0 ]
5645
*/
5746
function mul( z1, z2 ) {
5847
var v = addon( z1, z2 );

0 commit comments

Comments
 (0)