Skip to content

Commit 949f7e4

Browse files
committed
Auto-generated commit
1 parent 73cf289 commit 949f7e4

2 files changed

Lines changed: 0 additions & 27 deletions

File tree

CHANGELOG.md

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

1111
### Features
1212

13-
- [`4c3293f`](https://github.com/stdlib-js/stdlib/commit/4c3293f70b23dcec6671641de8f6ed28bb8368e3) - update `blas/ext/base/ndarray` TypeScript declarations [(#13074)](https://github.com/stdlib-js/stdlib/pull/13074)
1413
- [`a1693f8`](https://github.com/stdlib-js/stdlib/commit/a1693f8fea97d0808f8325e0b780126c45ad3e68) - add `zxpy` to namespace
1514
- [`bf4aa3e`](https://github.com/stdlib-js/stdlib/commit/bf4aa3e2c46f0218ec550fb1c909ef20eadb6714) - update `blas/ext/base/ndarray` TypeScript declarations [(#13039)](https://github.com/stdlib-js/stdlib/pull/13039)
1615
- [`ef06e88`](https://github.com/stdlib-js/stdlib/commit/ef06e88569a1ec15a9fcc15407fc44bbe3916296) - add `blas/ext/base/ndarray/zxpy` [(#13037)](https://github.com/stdlib-js/stdlib/pull/13037)
@@ -153,7 +152,6 @@
153152

154153
<details>
155154

156-
- [`4c3293f`](https://github.com/stdlib-js/stdlib/commit/4c3293f70b23dcec6671641de8f6ed28bb8368e3) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#13074)](https://github.com/stdlib-js/stdlib/pull/13074) _(by stdlib-bot)_
157155
- [`fb7ba7a`](https://github.com/stdlib-js/stdlib/commit/fb7ba7aa301480bcab339b75cc7562966292e365) - **docs:** update namespace table of contents [(#13079)](https://github.com/stdlib-js/stdlib/pull/13079) _(by stdlib-bot)_
158156
- [`d826990`](https://github.com/stdlib-js/stdlib/commit/d826990e554527589aae2026d63c616d8663f05f) - **docs:** update function descriptions [(#13044)](https://github.com/stdlib-js/stdlib/pull/13044) _(by Karan Anand)_
159157
- [`6a301dd`](https://github.com/stdlib-js/stdlib/commit/6a301ddefd0cf3bd4c05b26ff69aaaebaa356b83) - **docs:** update namespace table of contents [(#13043)](https://github.com/stdlib-js/stdlib/pull/13043) _(by stdlib-bot)_

docs/types/index.d.ts

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,6 @@ import zoneTo = require( '@stdlib/blas-ext-base-ndarray-zone-to' );
131131
import zsum = require( '@stdlib/blas-ext-base-ndarray-zsum' );
132132
import zsumkbn = require( '@stdlib/blas-ext-base-ndarray-zsumkbn' );
133133
import zunitspace = require( '@stdlib/blas-ext-base-ndarray-zunitspace' );
134-
import zxpy = require( '@stdlib/blas-ext-base-ndarray-zxpy' );
135134
import zxsa = require( '@stdlib/blas-ext-base-ndarray-zxsa' );
136135
import zzeroTo = require( '@stdlib/blas-ext-base-ndarray-zzero-to' );
137136

@@ -3200,30 +3199,6 @@ interface Namespace {
32003199
*/
32013200
zunitspace: typeof zunitspace;
32023201

3203-
/**
3204-
* Adds 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 assigns the results to the second ndarray.
3205-
*
3206-
* ## Notes
3207-
*
3208-
* - The function expects the following ndarrays:
3209-
*
3210-
* - a one-dimensional input ndarray.
3211-
* - a one-dimensional output ndarray.
3212-
*
3213-
* @param arrays - array-like object containing ndarrays
3214-
* @returns output ndarray
3215-
*
3216-
* @example
3217-
* var Complex128Vector = require( '@stdlib/ndarray-vector-complex128' );
3218-
*
3219-
* var x = new Complex128Vector( [ 1.0, 2.0, 3.0, -1.0, 0.0, 1.0 ] );
3220-
* var y = new Complex128Vector( [ 2.0, 1.0, -1.0, 3.0, 4.0, 0.0 ] );
3221-
*
3222-
* var out = ns.zxpy( [ x, y ] );
3223-
* // returns <ndarray>[ <Complex128>[ 3.0, 3.0 ], <Complex128>[ 2.0, 2.0 ], <Complex128>[ 4.0, 1.0 ] ]
3224-
*/
3225-
zxpy: typeof zxpy;
3226-
32273202
/**
32283203
* Subtracts a scalar constant from each element in a one-dimensional double-precision complex floating-point ndarray.
32293204
*

0 commit comments

Comments
 (0)