Skip to content

Commit f6ed6b0

Browse files
committed
Auto-generated commit
1 parent 9269fbb commit f6ed6b0

2 files changed

Lines changed: 0 additions & 52 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-
- [`6b6be64`](https://github.com/stdlib-js/stdlib/commit/6b6be6461e4a28602d9b74246203306480689d7c) - update `blas/ext/base/ndarray` TypeScript declarations [(#13382)](https://github.com/stdlib-js/stdlib/pull/13382)
1413
- [`bb93e56`](https://github.com/stdlib-js/stdlib/commit/bb93e568471ae6a13b42c4dd2b519b88dc7d0028) - add `cxmy` and `zxmy` to namespace
1514
- [`41ba398`](https://github.com/stdlib-js/stdlib/commit/41ba39852bc5480c16acd778911ab1e921a1df32) - add `blas/ext/base/ndarray/cxmy` [(#13300)](https://github.com/stdlib-js/stdlib/pull/13300)
1615
- [`f1c7e3f`](https://github.com/stdlib-js/stdlib/commit/f1c7e3f164551ff6275f36052ab82bacafdd69ca) - add `blas/ext/base/ndarray/zxmy` [(#13301)](https://github.com/stdlib-js/stdlib/pull/13301)
@@ -171,7 +170,6 @@
171170

172171
<details>
173172

174-
- [`6b6be64`](https://github.com/stdlib-js/stdlib/commit/6b6be6461e4a28602d9b74246203306480689d7c) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#13382)](https://github.com/stdlib-js/stdlib/pull/13382) _(by stdlib-bot)_
175173
- [`262f2dc`](https://github.com/stdlib-js/stdlib/commit/262f2dc2c6500adab7f8774631496aed1436d0d7) - **docs:** update namespace table of contents [(#13384)](https://github.com/stdlib-js/stdlib/pull/13384) _(by stdlib-bot)_
176174
- [`bb93e56`](https://github.com/stdlib-js/stdlib/commit/bb93e568471ae6a13b42c4dd2b519b88dc7d0028) - **feat:** add `cxmy` and `zxmy` to namespace _(by Athan Reines)_
177175
- [`41ba398`](https://github.com/stdlib-js/stdlib/commit/41ba39852bc5480c16acd778911ab1e921a1df32) - **feat:** add `blas/ext/base/ndarray/cxmy` [(#13300)](https://github.com/stdlib-js/stdlib/pull/13300) _(by Karan Anand)_

docs/types/index.d.ts

Lines changed: 0 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ import coneTo = require( '@stdlib/blas-ext-base-ndarray-cone-to' );
2727
import csum = require( '@stdlib/blas-ext-base-ndarray-csum' );
2828
import csumkbn = require( '@stdlib/blas-ext-base-ndarray-csumkbn' );
2929
import cunitspace = require( '@stdlib/blas-ext-base-ndarray-cunitspace' );
30-
import cxmy = require( '@stdlib/blas-ext-base-ndarray-cxmy' );
3130
import cxpy = require( '@stdlib/blas-ext-base-ndarray-cxpy' );
3231
import cxsa = require( '@stdlib/blas-ext-base-ndarray-cxsa' );
3332
import cxsy = require( '@stdlib/blas-ext-base-ndarray-cxsy' );
@@ -139,7 +138,6 @@ import zoneTo = require( '@stdlib/blas-ext-base-ndarray-zone-to' );
139138
import zsum = require( '@stdlib/blas-ext-base-ndarray-zsum' );
140139
import zsumkbn = require( '@stdlib/blas-ext-base-ndarray-zsumkbn' );
141140
import zunitspace = require( '@stdlib/blas-ext-base-ndarray-zunitspace' );
142-
import zxmy = require( '@stdlib/blas-ext-base-ndarray-zxmy' );
143141
import zxpy = require( '@stdlib/blas-ext-base-ndarray-zxpy' );
144142
import zxsa = require( '@stdlib/blas-ext-base-ndarray-zxsa' );
145143
import zxsy = require( '@stdlib/blas-ext-base-ndarray-zxsy' );
@@ -348,30 +346,6 @@ interface Namespace {
348346
*/
349347
cunitspace: typeof cunitspace;
350348

351-
/**
352-
* Multiplies elements of a one-dimensional single-precision complex floating-point ndarray by the corresponding elements of a second one-dimensional single-precision complex floating-point ndarray and assigns the results to the second ndarray.
353-
*
354-
* ## Notes
355-
*
356-
* - The function expects the following ndarrays:
357-
*
358-
* - a one-dimensional input ndarray.
359-
* - a one-dimensional output ndarray.
360-
*
361-
* @param arrays - array-like object containing ndarrays
362-
* @returns output ndarray
363-
*
364-
* @example
365-
* var Complex64Vector = require( '@stdlib/ndarray-vector-complex64' );
366-
*
367-
* var x = new Complex64Vector( [ 1.0, 2.0, 3.0, -1.0, 0.0, 1.0 ] );
368-
* var y = new Complex64Vector( [ 2.0, 1.0, -1.0, 3.0, 4.0, 0.0 ] );
369-
*
370-
* var out = ns.cxmy( [ x, y ] );
371-
* // returns <ndarray>[ <Complex64>[ 0.0, 5.0 ], <Complex64>[ 0.0, 10.0 ], <Complex64>[ 0.0, 4.0 ] ]
372-
*/
373-
cxmy: typeof cxmy;
374-
375349
/**
376350
* Adds 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 assigns the results to the second ndarray.
377351
*
@@ -3402,30 +3376,6 @@ interface Namespace {
34023376
*/
34033377
zunitspace: typeof zunitspace;
34043378

3405-
/**
3406-
* Multiplies elements of a one-dimensional double-precision complex floating-point ndarray by the corresponding elements of a second one-dimensional double-precision complex floating-point ndarray and assigns the results to the second ndarray.
3407-
*
3408-
* ## Notes
3409-
*
3410-
* - The function expects the following ndarrays:
3411-
*
3412-
* - a one-dimensional input ndarray.
3413-
* - a one-dimensional output ndarray.
3414-
*
3415-
* @param arrays - array-like object containing ndarrays
3416-
* @returns output ndarray
3417-
*
3418-
* @example
3419-
* var Complex128Vector = require( '@stdlib/ndarray-vector-complex128' );
3420-
*
3421-
* var x = new Complex128Vector( [ 1.0, 1.0, 2.0, -1.0, 3.0, 0.0 ] );
3422-
* var y = new Complex128Vector( [ 2.0, 1.0, 1.0, 2.0, 2.0, -2.0 ] );
3423-
*
3424-
* var out = ns.zxmy( [ x, y ] );
3425-
* // returns <ndarray>[ <Complex128>[ 1.0, 3.0 ], <Complex128>[ 4.0, 3.0 ], <Complex128>[ 6.0, -6.0 ] ]
3426-
*/
3427-
zxmy: typeof zxmy;
3428-
34293379
/**
34303380
* 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.
34313381
*

0 commit comments

Comments
 (0)