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: lib/node_modules/@stdlib/blas/base/ndarray/README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,11 +47,12 @@ The namespace exposes the following APIs:
47
47
48
48
- <spanclass="signature">[`caxpy( arrays )`][@stdlib/blas/base/ndarray/caxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional single-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional single-precision complex floating-point ndarray `y`.</span>
49
49
- <spanclass="signature">[`ccopy( arrays )`][@stdlib/blas/base/ndarray/ccopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional single-precision complex floating-point ndarray `x` into a one-dimensional single-precision complex floating-point ndarray `y`.</span>
- <spanclass="signature">[`dasum( arrays )`][@stdlib/blas/base/ndarray/dasum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values for all elements in a one-dimensional double-precision floating-point ndarray.</span>
52
52
- <spanclass="signature">[`daxpy( arrays )`][@stdlib/blas/base/ndarray/daxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional double-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision floating-point ndarray `y`.</span>
53
53
- <spanclass="signature">[`dcopy( arrays )`][@stdlib/blas/base/ndarray/dcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional double-precision floating-point ndarray `x` into a one-dimensional double-precision floating-point ndarray `y`.</span>
54
54
- <spanclass="signature">[`ddot( arrays )`][@stdlib/blas/base/ndarray/ddot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional double-precision floating-point ndarrays.</span>
55
+
- <spanclass="signature">[`dscal( arrays )`][@stdlib/blas/base/ndarray/dscal]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional double-precision floating-point ndarray by a scalar constant.</span>
55
56
- <spanclass="signature">[`dswap( arrays )`][@stdlib/blas/base/ndarray/dswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two one-dimensional double-precision floating-point ndarrays.</span>
56
57
- <spanclass="signature">[`gasum( arrays )`][@stdlib/blas/base/ndarray/gasum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values for all elements in a one-dimensional ndarray.</span>
57
58
- <spanclass="signature">[`gaxpy( arrays )`][@stdlib/blas/base/ndarray/gaxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional ndarray `x` by a constant `alpha` and add the result to a one-dimensional ndarray `y`.</span>
@@ -62,10 +63,11 @@ The namespace exposes the following APIs:
62
63
- <spanclass="signature">[`saxpy( arrays )`][@stdlib/blas/base/ndarray/saxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional single-precision floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional single-precision floating-point ndarray `y`.</span>
63
64
- <spanclass="signature">[`scopy( arrays )`][@stdlib/blas/base/ndarray/scopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional single-precision floating-point ndarray `x` into a one-dimensional single-precision floating-point ndarray `y`.</span>
64
65
- <spanclass="signature">[`sdot( arrays )`][@stdlib/blas/base/ndarray/sdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional single-precision floating-point ndarrays.</span>
66
+
- <spanclass="signature">[`sscal( arrays )`][@stdlib/blas/base/ndarray/sscal]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional single-precision floating-point ndarray by a scalar constant.</span>
65
67
- <spanclass="signature">[`sswap( arrays )`][@stdlib/blas/base/ndarray/sswap]</span><spanclass="delimiter">: </span><spanclass="description">interchange two one-dimensional single-precision floating-point ndarrays.</span>
66
68
- <spanclass="signature">[`zaxpy( arrays )`][@stdlib/blas/base/ndarray/zaxpy]</span><spanclass="delimiter">: </span><spanclass="description">multiply a one-dimensional double-precision complex floating-point ndarray `x` by a constant `alpha` and add the result to a one-dimensional double-precision complex floating-point ndarray `y`.</span>
67
69
- <spanclass="signature">[`zcopy( arrays )`][@stdlib/blas/base/ndarray/zcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional double-precision complex floating-point ndarray `x` into a one-dimensional double-precision complex floating-point ndarray `y`.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -227,6 +227,7 @@ var o = ns;
227
227
- <spanclass="signature">[`zsum( N, x, strideX )`][@stdlib/blas/ext/base/zsum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of double-precision complex floating-point strided array elements.</span>
228
228
- <spanclass="signature">[`zsumkbn( N, x, strideX )`][@stdlib/blas/ext/base/zsumkbn]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of double-precision complex floating-point strided array elements using an improved Kahan–Babuška algorithm.</span>
229
229
- <spanclass="signature">[`zunitspace( N, start, x, strideX )`][@stdlib/blas/ext/base/zunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a double-precision complex floating-point strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
230
+
- <spanclass="signature">[`zwhere( N, condition, strideC, x, strideX, y, strideY, out, strideOut )`][@stdlib/blas/ext/base/zwhere]</span><spanclass="delimiter">: </span><spanclass="description">take elements from one of two double-precision complex floating-point strided arrays depending on a condition.</span>
230
231
- <spanclass="signature">[`zzeroTo( N, x, strideX )`][@stdlib/blas/ext/base/zzero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a double-precision complex floating-point strided array with linearly spaced numeric elements which increment by `1` starting from zero.</span>
0 commit comments