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
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,12 +48,15 @@ The namespace exposes the following APIs:
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">[`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>
50
50
- <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>
51
+
- <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>
51
52
- <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>
52
53
- <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>
53
54
- <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>
55
+
- <spanclass="signature">[`gcopy( arrays )`][@stdlib/blas/base/ndarray/gcopy]</span><spanclass="delimiter">: </span><spanclass="description">copy values from a one-dimensional ndarray `x` into a one-dimensional ndarray `y`.</span>
54
56
- <spanclass="signature">[`gdot( arrays )`][@stdlib/blas/base/ndarray/gdot]</span><spanclass="delimiter">: </span><spanclass="description">calculate the dot product of two one-dimensional ndarrays.</span>
55
57
- <spanclass="signature">[`sasum( arrays )`][@stdlib/blas/base/ndarray/sasum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of absolute values for all elements in a one-dimensional single-precision floating-point ndarray.</span>
56
58
- <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>
59
+
- <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>
57
60
- <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>
58
61
- <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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/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
@@ -158,6 +158,7 @@ var o = ns;
158
158
- <spanclass="signature">[`gsumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/gsumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using a second-order iterative Kahan–Babuška algorithm.</span>
159
159
- <spanclass="signature">[`gsumors( N, x, strideX )`][@stdlib/blas/ext/base/gsumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using ordinary recursive summation.</span>
160
160
- <spanclass="signature">[`gsumpw( N, x, strideX )`][@stdlib/blas/ext/base/gsumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of strided array elements using pairwise summation.</span>
161
+
- <spanclass="signature">[`gunitspace( N, start, x, strideX )`][@stdlib/blas/ext/base/gunitspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with linearly spaced numeric elements which increment by `1` starting from a specified value.</span>
161
162
- <spanclass="signature">[`gvander( order, mode, M, N, x, strideX, out, ldo )`][@stdlib/blas/ext/base/gvander]</span><spanclass="delimiter">: </span><spanclass="description">generate a Vandermonde matrix.</span>
162
163
- <spanclass="signature">[`gwhere( N, condition, strideC, x, strideX, y, strideY, out, strideOut )`][@stdlib/blas/ext/base/gwhere]</span><spanclass="delimiter">: </span><spanclass="description">take elements from one of two strided arrays depending on a condition.</span>
163
164
- <spanclass="signature">[`gzeroTo( N, x, strideX )`][@stdlib/blas/ext/base/gzero-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a strided array with linearly spaced numeric elements which increment by `1` starting from zero.</span>
@@ -211,6 +212,7 @@ var o = ns;
211
212
- <spanclass="signature">[`wasm`][@stdlib/blas/ext/base/wasm]</span><spanclass="delimiter">: </span><spanclass="description">extensions to basic linear algebra subprograms (BLAS) compiled to WebAssembly.</span>
212
213
- <spanclass="signature">[`zfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/zfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a double-precision complex floating-point strided array with a specified scalar constant.</span>
213
214
- <spanclass="signature">[`zindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/zindex-of-row]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the first row in a double-precision complex floating-point input matrix which has the same elements as a provided search vector.</span>
215
+
- <spanclass="signature">[`znancount( N, x, strideX )`][@stdlib/blas/ext/base/znancount]</span><spanclass="delimiter">: </span><spanclass="description">calculate the number of non-`NaN` elements in a double-precision complex floating-point strided array.</span>
214
216
- <spanclass="signature">[`zoneTo( N, x, strideX )`][@stdlib/blas/ext/base/zone-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 one.</span>
215
217
- <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>
216
218
- <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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/math/base/tools/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
@@ -44,6 +44,7 @@ var o = tools;
44
44
<divclass="namespace-toc">
45
45
46
46
- <spanclass="signature">[`chebyshevSeries( x, c )`][@stdlib/math/base/tools/chebyshev-series]</span><spanclass="delimiter">: </span><spanclass="description">evaluate a Chebyshev series using double-precision floating-point arithmetic.</span>
47
+
- <spanclass="signature">[`chebyshevSeriesf( x, c )`][@stdlib/math/base/tools/chebyshev-seriesf]</span><spanclass="delimiter">: </span><spanclass="description">evaluate a Chebyshev series using single-precision floating-point arithmetic.</span>
- <spanclass="signature">[`evalpoly( c, x )`][@stdlib/math/base/tools/evalpoly]</span><spanclass="delimiter">: </span><spanclass="description">evaluate a polynomial using double-precision floating-point arithmetic.</span>
49
50
- <spanclass="signature">[`evalpolyf( c, x )`][@stdlib/math/base/tools/evalpolyf]</span><spanclass="delimiter">: </span><spanclass="description">evaluate a polynomial using single-precision floating-point arithmetic.</span>
0 commit comments