8000 Auto-generated commit · stdlib-js/complex@63cc262 · GitHub
[go: up one dir, main page]

Skip to content

Commit 63cc262

Browse files
committed
Auto-generated commit
1 parent 3ed3721 commit 63cc262

File tree

2 files changed

+59
-1
lines changed

2 files changed

+59
-1
lines changed

CHANGELOG.md

Lines changed: 40 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-02-16)
7+
## Unreleased (2025-02-17)
88

99
<section class="packages">
1010

@@ -44,6 +44,40 @@
4444

4545
<!-- /.package -->
4646

47+
<section class="package" id="complex-float32-base-unreleased">
48+
49+
#### [@stdlib/complex/float32/base](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base)
50+
51+
<details>
52+
53+
<section class="features">
54+
55+
##### Features
56+
57+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410) - update namespace TypeScript declarations [(#5254)](https://github.com/stdlib-js/stdlib/pull/5254)
58+
59+
</section>
60+
61+
<!-- /.features -->
62+
63+
<section class="breaking-changes">
64+
65+
##### BREAKING CHANGES
66+
67+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410): remove `dmaxabs`
68+
69+
- To migrate, users should access `dmaxabs` via the `stats/strided` namespace.
70+
71+
</section>
72+
73+
<!-- /.breaking-changes -->
74+
75+
</details>
76+
77+
</section>
78+
79+
<!-- /.package -->
80+
4781
<section class="package" id="complex-float32-base-mul-unreleased">
4882

4983
#### [@stdlib/complex/float32/base/mul](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/complex/float32/base/mul)
@@ -199,6 +233,10 @@ This release closes the following issue:
199233

200234
### BREAKING CHANGES
201235

236+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410): remove `dmaxabs`
237+
238+
- To migrate, users should access `dmaxabs` via the `stats/strided` namespace.
239+
202240
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec): update namespace declarations
203241

204242
- To migrate, users should consult the corresponding packages containing the respective implementations to determine what is breaking. The primary breakages come from the `blas/*` namespace, where we recently refactored how top-level BLAS APIs operate on input arguments.
@@ -239,6 +277,7 @@ A total of 3 people contributed to this release. Thank you to the following cont
239277

240278
<details>
241279

280+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410) - **feat:** update namespace TypeScript declarations [(#5254)](https://github.com/stdlib-js/stdlib/pull/5254) _(by stdlib-bot)_
242281
- [`d7154e2`](https://github.com/stdlib-js/stdlib/commit/d7154e2c7756ce51a9bbbf38848960ea988d4ea6) - **feat:** add `strided` and `assign` APIs to `complex/float32/base/mul` [(#5205)](https://github.com/stdlib-js/stdlib/pull/5205) _(by Shabareesh Shetty, Athan Reines, stdlib-bot)_
243282
- [`b957f93`](https://github.com/stdlib-js/stdlib/commit/b957f93bfacfa2b307db9b30a45fa48ce5b4488b) - **docs:** fix description _(by Athan Reines)_
244283
- [`8409bd1`](https://github.com/stdlib-js/stdlib/commit/8409bd17639c21c94be23d8498789fca5352892b) - **feat:** update namespace TypeScript declarations [(#4856)](https://github.com/stdlib-js/stdlib/pull/4856) _(by stdlib-bot)_

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

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,25 @@ interface Namespace {
8585
*
8686
* var im = imagf( out );
8787
* // returns -1.0
88+
*
89+
* @example
90+
* var Float32Array = require( '@stdlib/array/float32' );
91+
*
92+
* var out = new Float32Array( 2 );
93+
* var v = ns.mul.assign( 5.0, 3.0, -2.0, 1.0, out, 1, 0 );
94+
* // returns <Float32Array>[ -13.0, -1.0 ]
95+
*
96+
* var bool = ( out === v );
97+
* // returns true
98+
*
99+
* @example
100+
* var Float32Array = require( '@stdlib/array/float32' );
101+
*
102+
* var z1 = new Float32Array( [ 5.0, 3.0 ] );
103+
* var z2 = new Float32Array( [ -2.0, 1.0 ] );
104+
*
105+
* var out = ns.mul.strided( z1, 1, 0, z2, 1, 0, new Float32Array( 2 ), 1, 0 );
106+
* // returns <Float32Array>[ -13.0, -1.0 ]
88107
*/
89108
mul: typeof mul;
90109
}

0 commit comments

Comments
 (0)
0