Skip to content

Commit a9faad6

Browse files
committed
Auto-generated commit
1 parent 22f8d20 commit a9faad6

3 files changed

Lines changed: 144 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-06-23)
7+
## Unreleased (2026-06-24)
88

99
<section class="features">
1010

1111
### Features
1212

13+
- [`1fbfb26`](https://github.com/stdlib-js/stdlib/commit/1fbfb26cfc749fe945b5f5063614591e3452efe5) - update `blas/ext/base/ndarray` TypeScript declarations [(#13099)](https://github.com/stdlib-js/stdlib/pull/13099)
1314
- [`4f6e45f`](https://github.com/stdlib-js/stdlib/commit/4f6e45f22500f456a7fde5de9d84b7ec102e415f) - add `cxsy` and `zxsy` to namespace
1415
- [`5d927bf`](https://github.com/stdlib-js/stdlib/commit/5d927bfdccbd24aa7e7632ba7a0c963b838f4306) - add `blas/ext/base/ndarray/zxsy` [(#13082)](https://github.com/stdlib-js/stdlib/pull/13082)
1516
- [`51f525b`](https://github.com/stdlib-js/stdlib/commit/51f525b91f19d10d203efd2792e2c7f4327a66eb) - add `blas/ext/base/ndarray/cxsy` [(#13081)](https://github.com/stdlib-js/stdlib/pull/13081)
@@ -160,6 +161,8 @@
160161

161162
<details>
162163

164+
- [`1fbfb26`](https://github.com/stdlib-js/stdlib/commit/1fbfb26cfc749fe945b5f5063614591e3452efe5) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#13099)](https://github.com/stdlib-js/stdlib/pull/13099) _(by stdlib-bot)_
165+
- [`d7a14c5`](https://github.com/stdlib-js/stdlib/commit/d7a14c565535f33ebb04986642388d5d81008271) - **docs:** update namespace table of contents [(#13102)](https://github.com/stdlib-js/stdlib/pull/13102) _(by stdlib-bot, Philipp Burckhardt)_
163166
- [`4f6e45f`](https://github.com/stdlib-js/stdlib/commit/4f6e45f22500f456a7fde5de9d84b7ec102e415f) - **feat:** add `cxsy` and `zxsy` to namespace _(by Athan Reines)_
164167
- [`5d927bf`](https://github.com/stdlib-js/stdlib/commit/5d927bfdccbd24aa7e7632ba7a0c963b838f4306) - **feat:** add `blas/ext/base/ndarray/zxsy` [(#13082)](https://github.com/stdlib-js/stdlib/pull/13082) _(by Karan Anand)_
165168
- [`51f525b`](https://github.com/stdlib-js/stdlib/commit/51f525b91f19d10d203efd2792e2c7f4327a66eb) - **feat:** add `blas/ext/base/ndarray/cxsy` [(#13081)](https://github.com/stdlib-js/stdlib/pull/13081) _(by Karan Anand)_

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ The namespace exposes the following APIs:
8787
- <span class="signature">[`cunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/cunitspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
8888
- <span class="signature">[`cxpy( arrays )`][@stdlib/blas/ext/base/ndarray/cxpy]</span><span class="delimiter">: </span><span class="description">add elements of a one-dimensional single-precision complex floating-point ndarray to the corresponding elements of a second one-dimensional single-precision complex floating-point ndarray and assign the results to the second ndarray.</span>
8989
- <span class="signature">[`cxsa( arrays )`][@stdlib/blas/ext/base/ndarray/cxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a one-dimensional single-precision complex floating-point ndarray.</span>
90+
- <span class="signature">[`cxsy( arrays )`][@stdlib/blas/ext/base/ndarray/cxsy]</span><span class="delimiter">: </span><span class="description">subtract the elements of an output one-dimensional single-precision complex floating-point ndarray from the corresponding elements in an input one-dimensional single-precision complex floating-point ndarray and assign the results to the output ndarray.</span>
9091
- <span class="signature">[`czeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/czero-to]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
9192
- <span class="signature">[`daxpb( arrays )`][@stdlib/blas/ext/base/ndarray/daxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a one-dimensional double-precision floating-point ndarray by a scalar constant and add a scalar constant to each result.</span>
9293
- <span class="signature">[`daxpby( arrays )`][@stdlib/blas/ext/base/ndarray/daxpby]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional double-precision floating-point ndarray by a scalar constant and add the result to a second one-dimensional double-precision floating-point ndarray multiplied by a scalar constant.</span>
@@ -119,6 +120,7 @@ The namespace exposes the following APIs:
119120
- <span class="signature">[`dunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/dunitspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
120121
- <span class="signature">[`dxpy( arrays )`][@stdlib/blas/ext/base/ndarray/dxpy]</span><span class="delimiter">: </span><span class="description">add elements of a one-dimensional double-precision floating-point ndarray to the corresponding elements of a second one-dimensional double-precision floating-point ndarray and assign the results to the second ndarray.</span>
121122
- <span class="signature">[`dxsa( arrays )`][@stdlib/blas/ext/base/ndarray/dxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a one-dimensional double-precision floating-point ndarray.</span>
123+
- <span class="signature">[`dxsy( arrays )`][@stdlib/blas/ext/base/ndarray/dxsy]</span><span class="delimiter">: </span><span class="description">subtract the elements of an output one-dimensional double-precision floating-point ndarray from the corresponding elements in an input one-dimensional double-precision floating-point ndarray and assign the results to the output ndarray.</span>
122124
- <span class="signature">[`dzeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/dzero-to]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
123125
- <span class="signature">[`gaxpb( arrays )`][@stdlib/blas/ext/base/ndarray/gaxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a one-dimensional ndarray by a scalar constant and add a scalar constant to each result.</span>
124126
- <span class="signature">[`gaxpby( arrays )`][@stdlib/blas/ext/base/ndarray/gaxpby]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional ndarray by a scalar constant and add the result to a second one-dimensional ndarray multiplied by a scalar constant.</span>
@@ -153,6 +155,7 @@ The namespace exposes the following APIs:
153155
- <span class="signature">[`gunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/gunitspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
154156
- <span class="signature">[`gxpy( arrays )`][@stdlib/blas/ext/base/ndarray/gxpy]</span><span class="delimiter">: </span><span class="description">add elements of a one-dimensional ndarray to the corresponding elements of a second one-dimensional ndarray and assign the results to the second ndarray.</span>
155157
- <span class="signature">[`gxsa( arrays )`][@stdlib/blas/ext/base/ndarray/gxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a one-dimensional ndarray.</span>
158+
- <span class="signature">[`gxsy( arrays )`][@stdlib/blas/ext/base/ndarray/gxsy]</span><span class="delimiter">: </span><span class="description">subtract the elements of an output one-dimensional ndarray from the corresponding elements in an input one-dimensional ndarray and assign the results to the output ndarray.</span>
156159
- <span class="signature">[`gzeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/gzero-to]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
157160
- <span class="signature">[`saxpb( arrays )`][@stdlib/blas/ext/base/ndarray/saxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a one-dimensional single-precision floating-point ndarray by a scalar constant and add a scalar constant to each result.</span>
158161
- <span class="signature">[`saxpby( arrays )`][@stdlib/blas/ext/base/ndarray/saxpby]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional single-precision floating-point ndarray by a scalar constant and add the result to a second one-dimensional single-precision floating-point ndarray multiplied by a scalar constant.</span>
@@ -181,6 +184,7 @@ The namespace exposes the following APIs:
181184
- <span class="signature">[`sunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/sunitspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
182185
- <span class="signature">[`sxpy( arrays )`][@stdlib/blas/ext/base/ndarray/sxpy]</span><span class="delimiter">: </span><span class="description">add elements of a one-dimensional single-precision floating-point ndarray to the corresponding elements of a second one-dimensional single-precision floating-point ndarray and assign the results to the second ndarray.</span>
183186
- <span class="signature">[`sxsa( arrays )`][@stdlib/blas/ext/base/ndarray/sxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a one-dimensional single-precision floating-point ndarray.</span>
187+
- <span class="signature">[`sxsy( arrays )`][@stdlib/blas/ext/base/ndarray/sxsy]</span><span class="delimiter">: </span><span class="description">subtract the elements of an output one-dimensional single-precision floating-point ndarray from the corresponding elements in an input one-dimensional single-precision floating-point ndarray and assign the results to the output ndarray.</span>
184188
- <span class="signature">[`szeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/szero-to]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
185189
- <span class="signature">[`zaxpb( arrays )`][@stdlib/blas/ext/base/ndarray/zaxpb]</span><span class="delimiter">: </span><span class="description">multiply each element in a one-dimensional double-precision complex floating-point ndarray by a scalar constant and add a scalar constant to each result.</span>
186190
- <span class="signature">[`zaxpby( arrays )`][@stdlib/blas/ext/base/ndarray/zaxpby]</span><span class="delimiter">: </span><span class="description">multiply a one-dimensional double-precision complex floating-point ndarray by a scalar constant and add the result to a second one-dimensional double-precision complex floating-point ndarray multiplied by a scalar constant.</span>
@@ -191,6 +195,7 @@ The namespace exposes the following APIs:
191195
- <span class="signature">[`zunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/zunitspace]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
192196
- <span class="signature">[`zxpy( arrays )`][@stdlib/blas/ext/base/ndarray/zxpy]</span><span class="delimiter">: </span><span class="description">add elements of a one-dimensional double-precision complex floating-point ndarray to the corresponding elements of a second one-dimensional double-precision complex floating-point ndarray and assign the results to the second ndarray.</span>
193197
- <span class="signature">[`zxsa( arrays )`][@stdlib/blas/ext/base/ndarray/zxsa]</span><span class="delimiter">: </span><span class="description">subtract a scalar constant from each element in a one-dimensional double-precision complex floating-point ndarray.</span>
198+
- <span class="signature">[`zxsy( arrays )`][@stdlib/blas/ext/base/ndarray/zxsy]</span><span class="delimiter">: </span><span class="description">subtract elements of an output one-dimensional double-precision complex floating-point ndarray from the corresponding elements in an input one-dimensional double-precision complex floating-point ndarray and assign the results to the output ndarray.</span>
194199
- <span class="signature">[`zzeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/zzero-to]</span><span class="delimiter">: </span><span class="description">fill a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
195200

196201
</div>
@@ -320,6 +325,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
320325

321326
[@stdlib/blas/ext/base/ndarray/cxsa]: https://github.com/stdlib-js/blas-ext-base-ndarray-cxsa
322327

328+
[@stdlib/blas/ext/base/ndarray/cxsy]: https://github.com/stdlib-js/blas-ext-base-ndarray-cxsy
329+
323330
[@stdlib/blas/ext/base/ndarray/czero-to]: https://github.com/stdlib-js/blas-ext-base-ndarray-czero-to
324331

325332
[@stdlib/blas/ext/base/ndarray/daxpb]: https://github.com/stdlib-js/blas-ext-base-ndarray-daxpb
@@ -384,6 +391,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
384391

385392
[@stdlib/blas/ext/base/ndarray/dxsa]: https://github.com/stdlib-js/blas-ext-base-ndarray-dxsa
386393

394+
[@stdlib/blas/ext/base/ndarray/dxsy]: https://github.com/stdlib-js/blas-ext-base-ndarray-dxsy
395+
387396
[@stdlib/blas/ext/base/ndarray/dzero-to]: https://github.com/stdlib-js/blas-ext-base-ndarray-dzero-to
388397

389398
[@stdlib/blas/ext/base/ndarray/gaxpb]: https://github.com/stdlib-js/blas-ext-base-ndarray-gaxpb
@@ -452,6 +461,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
452461

453462
[@stdlib/blas/ext/base/ndarray/gxsa]: https://github.com/stdlib-js/blas-ext-base-ndarray-gxsa
454463

464+
[@stdlib/blas/ext/base/ndarray/gxsy]: https://github.com/stdlib-js/blas-ext-base-ndarray-gxsy
465+
455466
[@stdlib/blas/ext/base/ndarray/gzero-to]: https://github.com/stdlib-js/blas-ext-base-ndarray-gzero-to
456467

457468
[@stdlib/blas/ext/base/ndarray/saxpb]: https://github.com/stdlib-js/blas-ext-base-ndarray-saxpb
@@ -508,6 +519,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
508519

509520
[@stdlib/blas/ext/base/ndarray/sxsa]: https://github.com/stdlib-js/blas-ext-base-ndarray-sxsa
510521

522+
[@stdlib/blas/ext/base/ndarray/sxsy]: https://github.com/stdlib-js/blas-ext-base-ndarray-sxsy
523+
511524
[@stdlib/blas/ext/base/ndarray/szero-to]: https://github.com/stdlib-js/blas-ext-base-ndarray-szero-to
512525

513526
[@stdlib/blas/ext/base/ndarray/zaxpb]: https://github.com/stdlib-js/blas-ext-base-ndarray-zaxpb
@@ -528,6 +541,8 @@ Copyright &copy; 2016-2026. The Stdlib [Authors][stdlib-authors].
528541

529542
[@stdlib/blas/ext/base/ndarray/zxsa]: https://github.com/stdlib-js/blas-ext-base-ndarray-zxsa
530543

544+
[@stdlib/blas/ext/base/ndarray/zxsy]: https://github.com/stdlib-js/blas-ext-base-ndarray-zxsy
545+
531546
[@stdlib/blas/ext/base/ndarray/zzero-to]: https://github.com/stdlib-js/blas-ext-base-ndarray-zzero-to
532547

533548
<!-- </toc-links> -->

0 commit comments

Comments
 (0)