Skip to content

Commit a4b0cb5

Browse files
committed
Auto-generated commit
1 parent 4869b9b commit a4b0cb5

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
##### Features
2222

23+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410) - update namespace TypeScript declarations [(#5254)](https://github.com/stdlib-js/stdlib/pull/5254)
2324
- [`76cf95f`](https://github.com/stdlib-js/stdlib/commit/76cf95f336fc29cb4e83184fe6f215c23a723e95) - update namespace TypeScript declarations [(#5243)](https://github.com/stdlib-js/stdlib/pull/5243)
2425
- [`d66db3f`](https://github.com/stdlib-js/stdlib/commit/d66db3fd4b220adcc318a5993a97fe79e5b7445a) - update namespace TypeScript declarations [(#5130)](https://github.com/stdlib-js/stdlib/pull/5130)
2526
- [`14f3f1a`](https://github.com/stdlib-js/stdlib/commit/14f3f1af0988577680efc92522bb9a45a2cbd46b) - update namespace TypeScript declarations
@@ -71,6 +72,10 @@
7172

7273
##### BREAKING CHANGES
7374

75+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410): remove `dmaxabs`
76+
77+
- To migrate, users should access `dmaxabs` via the `stats/strided` namespace.
78+
7479
- [`76cf95f`](https://github.com/stdlib-js/stdlib/commit/76cf95f336fc29cb4e83184fe6f215c23a723e95): remove `add5`
7580

7681
- To migrate, users should access the `add5` symbol via the `number/float64/base` namespace.
@@ -4702,6 +4707,10 @@ This release closes the following issue:
47024707

47034708
### BREAKING CHANGES
47044709

4710+
- [`ae8e7b9`](https://github.com/stdlib-js/stdlib/commit/ae8e7b9f2140d1a5b98e8bc03fb909df3171d410): remove `dmaxabs`
4711+
4712+
- To migrate, users should access `dmaxabs` via the `stats/strided` namespace.
4713+
47054714
- [`76cf95f`](https://github.com/stdlib-js/stdlib/commit/76cf95f336fc29cb4e83184fe6f215c23a723e95): remove `add5`
47064715

47074716
- To migrate, users should access the `add5` symbol via the `number/float64/base` namespace.
@@ -5809,6 +5818,7 @@ A total of 8 people contributed to this release. Thank you to the following cont
58095818

58105819
<details>
58115820

5821+
- [`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)_
58125822
- [`8df3643`](https://github.com/stdlib-js/stdlib/commit/8df36439153e0c5f399c01b755213be55b2a696c) - **docs:** update namespace table of contents [(#5256)](https://github.com/stdlib-js/stdlib/pull/5256) _(by stdlib-bot)_
58135823
- [`c86e76e`](https://github.com/stdlib-js/stdlib/commit/c86e76e8c9ab907aedfccfbd74ca3ad39ff75a3e) - **feat:** add C `ndarray` implementation for `blas/base/zscal` [(#4864)](https://github.com/stdlib-js/stdlib/pull/4864) _(by Aman Bhansali, Athan Reines, stdlib-bot)_
58145824
- [`402bd40`](https://github.com/stdlib-js/stdlib/commit/402bd405359fba77de13d0136fbf3d1fb956e0ec) - **feat:** add `blas/base/wasm/sscal` [(#5224)](https://github.com/stdlib-js/stdlib/pull/5224) _(by Aman Bhansali, Athan Reines)_

docs/types/index.d.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2126,30 +2126,30 @@ interface Namespace {
21262126
* Scales a double-precision complex floating-point vector by a double-precision complex floating-point constant.
21272127
*
21282128
* @param N - number of indexed elements
2129-
* @param za - scalar constant
2130-
* @param zx - input array
2131-
* @param strideX - `zx` stride length
2129+
* @param alpha - scalar constant
2130+
* @param x - input array
2131+
* @param strideX - `x` stride length
21322132
* @returns input array
21332133
*
21342134
* @example
21352135
* var Complex128Array = require( '@stdlib/array-complex128' );
21362136
* var Complex128 = require( '@stdlib/complex-float64-ctor' );
21372137
*
2138-
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
2139-
* var za = new Complex128( 2.0, 2.0 );
2138+
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
2139+
* var alpha = new Complex128( 2.0, 2.0 );
21402140
*
2141-
* ns.zscal( 3, za, zx, 1 );
2142-
* // zx => <Complex128Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
2141+
* ns.zscal( 3, alpha, x, 1 );
2142+
* // x => <Complex128Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
21432143
*
21442144
* @example
21452145
* var Complex128Array = require( '@stdlib/array-complex128' );
21462146
* var Complex128 = require( '@stdlib/complex-float64-ctor' );
21472147
*
2148-
* var zx = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
2149-
* var za = new Complex128( 2.0, 2.0 );
2148+
* var x = new Complex128Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
2149+
* var alpha = new Complex128( 2.0, 2.0 );
21502150
*
2151-
* ns.zscal.ndarray( 2, za, zx, 1, 1 );
2152-
* // zx => <Complex128Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
2151+
* ns.zscal.ndarray( 2, alpha, x, 1, 1 );
2152+
* // x => <Complex128Array>[ -2.0, 6.0, -2.0, 14.0, -2.0, 22.0 ]
21532153
*/
21542154
zscal: typeof zscal;
21552155

0 commit comments

Comments
 (0)