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
Copy file name to clipboardExpand all lines: README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,7 @@ The namespace exposes the following APIs:
85
85
- <spanclass="signature">[`csum( arrays )`][@stdlib/blas/ext/base/ndarray/csum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision complex floating-point ndarray.</span>
86
86
- <spanclass="signature">[`csumkbn( arrays )`][@stdlib/blas/ext/base/ndarray/csumkbn]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision complex floating-point ndarray using an improved Kahan–Babuška algorithm.</span>
87
87
- <spanclass="signature">[`cunitspace( arrays )`][@stdlib/blas/ext/base/ndarray/cunitspace]</span><spanclass="delimiter">: </span><spanclass="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>
88
+
- <spanclass="signature">[`cxmy( arrays )`][@stdlib/blas/ext/base/ndarray/cxmy]</span><spanclass="delimiter">: </span><spanclass="description">multiply 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 assign the results to the second ndarray.</span>
88
89
- <spanclass="signature">[`cxpy( arrays )`][@stdlib/blas/ext/base/ndarray/cxpy]</span><spanclass="delimiter">: </span><spanclass="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>
89
90
- <spanclass="signature">[`cxsa( arrays )`][@stdlib/blas/ext/base/ndarray/cxsa]</span><spanclass="delimiter">: </span><spanclass="description">subtract a scalar constant from each element in a one-dimensional single-precision complex floating-point ndarray.</span>
90
91
- <spanclass="signature">[`cxsy( arrays )`][@stdlib/blas/ext/base/ndarray/cxsy]</span><spanclass="delimiter">: </span><spanclass="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>
@@ -196,6 +197,7 @@ The namespace exposes the following APIs:
196
197
- <spanclass="signature">[`zsum( arrays )`][@stdlib/blas/ext/base/ndarray/zsum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional double-precision complex floating-point ndarray.</span>
197
198
- <spanclass="signature">[`zsumkbn( arrays )`][@stdlib/blas/ext/base/ndarray/zsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional double-precision complex floating-point ndarray using an improved Kahan–Babuška algorithm.</span>
198
199
- <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>
200
+
- <spanclass="signature">[`zxmy( arrays )`][@stdlib/blas/ext/base/ndarray/zxmy]</span><spanclass="delimiter">: </span><spanclass="description">multiply 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 assign the results to the second ndarray.</span>
199
201
- <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>
200
202
- <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>
201
203
- <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>
* 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.
* 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.
351
377
*
@@ -3376,6 +3402,30 @@ interface Namespace {
3376
3402
*/
3377
3403
zunitspace: typeofzunitspace;
3378
3404
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.
* 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.
0 commit comments