Skip to content

Commit 3e83701

Browse files
committed
Auto-generated commit
1 parent a665763 commit 3e83701

2 files changed

Lines changed: 0 additions & 77 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-
- [`528f13a`](https://github.com/stdlib-js/stdlib/commit/528f13a49d359a17a1adc57d4d39b9f6718c408b) - update `blas/ext/base/ndarray` TypeScript declarations [(#13347)](https://github.com/stdlib-js/stdlib/pull/13347)
1413
- [`555c400`](https://github.com/stdlib-js/stdlib/commit/555c400e40e046884107b497434ffffd6d4cc5fd) - add `dxmy`, `gxmy`, and `sxmy` to namespace
1514
- [`dd0ee83`](https://github.com/stdlib-js/stdlib/commit/dd0ee83a47432aed42e12599ec0b92a22acec482) - add `blas/ext/base/ndarray/gxmy` [(#13299)](https://github.com/stdlib-js/stdlib/pull/13299)
1615
- [`d3a484b`](https://github.com/stdlib-js/stdlib/commit/d3a484ba7067078dca7245362ee38a1b9ecf7034) - add `blas/ext/base/ndarray/sxmy` [(#13298)](https://github.com/stdlib-js/stdlib/pull/13298)
@@ -167,7 +166,6 @@
167166

168167
<details>
169168

170-
- [`528f13a`](https://github.com/stdlib-js/stdlib/commit/528f13a49d359a17a1adc57d4d39b9f6718c408b) - **feat:** update `blas/ext/base/ndarray` TypeScript declarations [(#13347)](https://github.com/stdlib-js/stdlib/pull/13347) _(by stdlib-bot)_
171169
- [`1d90643`](https://github.com/stdlib-js/stdlib/commit/1d90643c8086210ebcb542d5e71fbdccad868e51) - **docs:** update namespace table of contents [(#13350)](https://github.com/stdlib-js/stdlib/pull/13350) _(by stdlib-bot)_
172170
- [`555c400`](https://github.com/stdlib-js/stdlib/commit/555c400e40e046884107b497434ffffd6d4cc5fd) - **feat:** add `dxmy`, `gxmy`, and `sxmy` to namespace _(by Athan Reines)_
173171
- [`dd0ee83`](https://github.com/stdlib-js/stdlib/commit/dd0ee83a47432aed42e12599ec0b92a22acec482) - **feat:** add `blas/ext/base/ndarray/gxmy` [(#13299)](https://github.com/stdlib-js/stdlib/pull/13299) _(by Karan Anand)_

docs/types/index.d.ts

Lines changed: 0 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ import dsumkbn2 = require( '@stdlib/blas-ext-base-ndarray-dsumkbn2' );
6060
import dsumors = require( '@stdlib/blas-ext-base-ndarray-dsumors' );
6161
import dsumpw = require( '@stdlib/blas-ext-base-ndarray-dsumpw' );
6262
import dunitspace = require( '@stdlib/blas-ext-base-ndarray-dunitspace' );
63-
import dxmy = require( '@stdlib/blas-ext-base-ndarray-dxmy' );
6463
import dxpy = require( '@stdlib/blas-ext-base-ndarray-dxpy' );
6564
import dxsa = require( '@stdlib/blas-ext-base-ndarray-dxsa' );
6665
import dxsy = require( '@stdlib/blas-ext-base-ndarray-dxsy' );
@@ -96,7 +95,6 @@ import gsumkbn2 = require( '@stdlib/blas-ext-base-ndarray-gsumkbn2' );
9695
import gsumors = require( '@stdlib/blas-ext-base-ndarray-gsumors' );
9796
import gsumpw = require( '@stdlib/blas-ext-base-ndarray-gsumpw' );
9897
import gunitspace = require( '@stdlib/blas-ext-base-ndarray-gunitspace' );
99-
import gxmy = require( '@stdlib/blas-ext-base-ndarray-gxmy' );
10098
import gxpy = require( '@stdlib/blas-ext-base-ndarray-gxpy' );
10199
import gxsa = require( '@stdlib/blas-ext-base-ndarray-gxsa' );
102100
import gxsy = require( '@stdlib/blas-ext-base-ndarray-gxsy' );
@@ -126,7 +124,6 @@ import ssumkbn2 = require( '@stdlib/blas-ext-base-ndarray-ssumkbn2' );
126124
import ssumors = require( '@stdlib/blas-ext-base-ndarray-ssumors' );
127125
import ssumpw = require( '@stdlib/blas-ext-base-ndarray-ssumpw' );
128126
import sunitspace = require( '@stdlib/blas-ext-base-ndarray-sunitspace' );
129-
import sxmy = require( '@stdlib/blas-ext-base-ndarray-sxmy' );
130127
import sxpy = require( '@stdlib/blas-ext-base-ndarray-sxpy' );
131128
import sxsa = require( '@stdlib/blas-ext-base-ndarray-sxsa' );
132129
import sxsy = require( '@stdlib/blas-ext-base-ndarray-sxsy' );
@@ -1254,30 +1251,6 @@ interface Namespace {
12541251
*/
12551252
dunitspace: typeof dunitspace;
12561253

1257-
/**
1258-
* Multiplies elements of a one-dimensional double-precision floating-point ndarray by the corresponding elements of a second one-dimensional double-precision floating-point ndarray and assigns the results to the second ndarray.
1259-
*
1260-
* ## Notes
1261-
*
1262-
* - The function expects the following ndarrays:
1263-
*
1264-
* - a one-dimensional input ndarray.
1265-
* - a one-dimensional output ndarray.
1266-
*
1267-
* @param arrays - array-like object containing ndarrays
1268-
* @returns output ndarray
1269-
*
1270-
* @example
1271-
* var Float64Vector = require( '@stdlib/ndarray-vector-float64' );
1272-
*
1273-
* var x = new Float64Vector( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
1274-
* var y = new Float64Vector( [ 2.0, 3.0, 4.0, 5.0, 6.0 ] );
1275-
*
1276-
* var out = ns.dxmy( [ x, y ] );
1277-
* // returns <ndarray>[ 2.0, 6.0, 12.0, 20.0, 30.0 ]
1278-
*/
1279-
dxmy: typeof dxmy;
1280-
12811254
/**
12821255
* Adds 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 assigns the results to the second ndarray.
12831256
*
@@ -2236,30 +2209,6 @@ interface Namespace {
22362209
*/
22372210
gunitspace: typeof gunitspace;
22382211

2239-
/**
2240-
* Multiplies elements of a one-dimensional ndarray by the corresponding elements of a second one-dimensional ndarray and assigns the results to the second ndarray.
2241-
*
2242-
* ## Notes
2243-
*
2244-
* - The function expects the following ndarrays:
2245-
*
2246-
* - a one-dimensional input ndarray.
2247-
* - a one-dimensional output ndarray.
2248-
*
2249-
* @param arrays - array-like object containing ndarrays
2250-
* @returns output ndarray
2251-
*
2252-
* @example
2253-
* var vector = require( '@stdlib/ndarray-vector-ctor' );
2254-
*
2255-
* var x = vector( [ 1.0, 2.0, 3.0, 4.0, 5.0 ], 'generic' );
2256-
* var y = vector( [ 2.0, 3.0, 4.0, 5.0, 6.0 ], 'generic' );
2257-
*
2258-
* var out = ns.gxmy( [ x, y ] );
2259-
* // returns <ndarray>[ 2.0, 6.0, 12.0, 20.0, 30.0 ]
2260-
*/
2261-
gxmy: typeof gxmy;
2262-
22632212
/**
22642213
* Adds elements of a one-dimensional ndarray to the corresponding elements of a second one-dimensional ndarray and assigns the results to the second ndarray.
22652214
*
@@ -3054,30 +3003,6 @@ interface Namespace {
30543003
*/
30553004
sunitspace: typeof sunitspace;
30563005

3057-
/**
3058-
* Multiplies elements of a one-dimensional single-precision floating-point ndarray by the corresponding elements of a second one-dimensional single-precision floating-point ndarray and assigns the results to the second ndarray.
3059-
*
3060-
* ## Notes
3061-
*
3062-
* - The function expects the following ndarrays:
3063-
*
3064-
* - a one-dimensional input ndarray.
3065-
* - a one-dimensional output ndarray.
3066-
*
3067-
* @param arrays - array-like object containing ndarrays
3068-
* @returns output ndarray
3069-
*
3070-
* @example
3071-
* var Float32Vector = require( '@stdlib/ndarray-vector-float32' );
3072-
*
3073-
* var x = new Float32Vector( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
3074-
* var y = new Float32Vector( [ 2.0, 3.0, 4.0, 5.0, 6.0 ] );
3075-
*
3076-
* var out = ns.sxmy( [ x, y ] );
3077-
* // returns <ndarray>[ 2.0, 6.0, 12.0, 20.0, 30.0 ]
3078-
*/
3079-
sxmy: typeof sxmy;
3080-
30813006
/**
30823007
* Adds 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 assigns the results to the second ndarray.
30833008
*

0 commit comments

Comments
 (0)