You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[`92b5eb4`](https://github.com/stdlib-js/stdlib/commit/92b5eb479a9ba6d3fe4f722d2f1b47e61a03122c) - use correct argument during error message interpolation and update descriptions [(#13105)](https://github.com/stdlib-js/stdlib/pull/13105)
149
151
-[`b3383d1`](https://github.com/stdlib-js/stdlib/commit/b3383d1340434b809dd7c2d73664293f5a29e948) - use correct element type
150
152
-[`c703f0f`](https://github.com/stdlib-js/stdlib/commit/c703f0f66c85fdd8890b2a0603ebe9934892d1b6) - rename C function to `stdlib_blas_ext_ssum` in `blas/ext/base/ndarray/ssum`
151
153
-[`60fcd9d`](https://github.com/stdlib-js/stdlib/commit/60fcd9dc51b43ad76b1b14e6d7b4c30a5670114a) - improve type specificity
@@ -160,7 +162,11 @@
160
162
161
163
<details>
162
164
163
-
-[`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)_
165
+
-[`92b5eb4`](https://github.com/stdlib-js/stdlib/commit/92b5eb479a9ba6d3fe4f722d2f1b47e61a03122c) - **fix:** use correct argument during error message interpolation and update descriptions [(#13105)](https://github.com/stdlib-js/stdlib/pull/13105)_(by Philipp Burckhardt)_
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ The namespace exposes the following APIs:
195
195
- <spanclass="signature">[`zunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/zunitspace]</span><spanclass="delimiter">: </span><spanclass="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>
196
196
- <spanclass="signature">[`zxpy( arrays )`][@stdlib/blas/ext/base/ndarray/zxpy]</span><spanclass="delimiter">: </span><spanclass="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>
197
197
- <spanclass="signature">[`zxsa( arrays )`][@stdlib/blas/ext/base/ndarray/zxsa]</span><spanclass="delimiter">: </span><spanclass="description">subtract a scalar constant from each element in a one-dimensional double-precision complex floating-point ndarray.</span>
198
-
- <spanclass="signature">[`zxsy( arrays )`][@stdlib/blas/ext/base/ndarray/zxsy]</span><spanclass="delimiter">: </span><spanclass="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>
198
+
- <spanclass="signature">[`zxsy( arrays )`][@stdlib/blas/ext/base/ndarray/zxsy]</span><spanclass="delimiter">: </span><spanclass="description">subtract the 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>
199
199
- <spanclass="signature">[`zzeroTo( arrays )`][@stdlib/blas/ext/base/ndarray/zzero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.</span>
* Subtracts 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 assigns the results to the output ndarray.
* Fills a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
396
425
*
@@ -1274,6 +1303,30 @@ interface Namespace {
1274
1303
*/
1275
1304
dxsa: typeofdxsa;
1276
1305
1306
+
/**
1307
+
* Subtracts 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 assigns the results to the output ndarray.
* Fills a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
1279
1332
*
@@ -2208,6 +2261,30 @@ interface Namespace {
2208
2261
*/
2209
2262
gxsa: typeofgxsa;
2210
2263
2264
+
/**
2265
+
* Subtracts the elements of an output one-dimensional ndarray from the corresponding elements in an input one-dimensional ndarray and assigns the results to the output ndarray.
* Fills a one-dimensional ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
2213
2290
*
@@ -2978,6 +3055,30 @@ interface Namespace {
2978
3055
*/
2979
3056
sxsa: typeofsxsa;
2980
3057
3058
+
/**
3059
+
* Subtracts 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 assigns the results to the output ndarray.
* Fills a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
2983
3084
*
@@ -3253,6 +3354,30 @@ interface Namespace {
3253
3354
*/
3254
3355
zxsa: typeofzxsa;
3255
3356
3357
+
/**
3358
+
* Subtracts the 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 assigns the results to the output ndarray.
* Fills a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from zero.
0 commit comments