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
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -47,6 +47,7 @@ The namespace exposes the following APIs:
47
47
48
48
- <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>
49
49
- <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>
50
+
- <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>
50
51
- <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>
51
52
- <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>
52
53
- <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>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/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
@@ -46,10 +46,12 @@ The namespace contains the following:
46
46
<divclass="namespace-toc">
47
47
48
48
- <spanclass="signature">[`base`][@stdlib/blas/ext/base]</span><spanclass="delimiter">: </span><spanclass="description">base (i.e., lower-level) extensions to basic linear algebra subprograms (BLAS).</span>
49
+
- <spanclass="signature">[`circshift( x, k[, options] )`][@stdlib/blas/ext/circshift]</span><spanclass="delimiter">: </span><spanclass="description">circularly shift the elements of an input ndarray by a specified number of positions along one or more ndarray dimensions.</span>
49
50
- <spanclass="signature">[`cusum( x[, initial][, options] )`][@stdlib/blas/ext/cusum]</span><spanclass="delimiter">: </span><spanclass="description">compute the cumulative sum along one or more ndarray dimensions.</span>
50
51
- <spanclass="signature">[`findIndex( x[, options], clbk[, thisArg] )`][@stdlib/blas/ext/find-index]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the first element along an ndarray dimension which passes a test implemented by a predicate function.</span>
51
52
- <spanclass="signature">[`findLastIndex( x[, options], clbk[, thisArg] )`][@stdlib/blas/ext/find-last-index]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the last element along an ndarray dimension which passes a test implemented by a predicate function.</span>
52
53
- <spanclass="signature">[`indexOf( x, searchElement[, fromIndex][, options] )`][@stdlib/blas/ext/index-of]</span><spanclass="delimiter">: </span><spanclass="description">return the first index of a specified search element along an ndarray dimension.</span>
54
+
- <spanclass="signature">[`join( x[, options] )`][@stdlib/blas/ext/join]</span><spanclass="delimiter">: </span><spanclass="description">return an ndarray created by joining elements using a separator along one or more ndarray dimensions.</span>
53
55
- <spanclass="signature">[`lastIndexOf( x, searchElement[, fromIndex][, options] )`][@stdlib/blas/ext/last-index-of]</span><spanclass="delimiter">: </span><spanclass="description">return the last index of a specified search element along an ndarray dimension.</span>
54
56
- <spanclass="signature">[`linspace( shape, start, stop[, endpoint][, options] )`][@stdlib/blas/ext/linspace]</span><spanclass="delimiter">: </span><spanclass="description">return a new ndarray filled with linearly spaced values over a specified interval along one or more ndarray dimensions.</span>
55
57
- <spanclass="signature">[`sorthp( x[, sortOrder][, options] )`][@stdlib/blas/ext/sorthp]</span><spanclass="delimiter">: </span><spanclass="description">sort an input ndarray along one or more ndarray dimensions using heapsort.</span>
Copy file name to clipboardExpand all lines: lib/node_modules/@stdlib/blas/ext/base/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
@@ -172,6 +172,7 @@ var o = ns;
172
172
- <spanclass="signature">[`sdssum( N, x, strideX )`][@stdlib/blas/ext/base/sdssum]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using extended accumulation.</span>
173
173
- <spanclass="signature">[`sdssumpw( N, x, strideX )`][@stdlib/blas/ext/base/sdssumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements using pairwise summation with extended accumulation.</span>
174
174
- <spanclass="signature">[`sfill( N, alpha, x, strideX )`][@stdlib/blas/ext/base/sfill]</span><spanclass="delimiter">: </span><spanclass="description">fill a single-precision floating-point strided array with a specified scalar constant.</span>
175
+
- <spanclass="signature">[`sindexOfRow( order, M, N, A, LDA, x, strideX, workspace, strideW )`][@stdlib/blas/ext/base/sindex-of-row]</span><spanclass="delimiter">: </span><spanclass="description">return the index of the first row in a single-precision floating-point input matrix which has the same elements as a provided search vector.</span>
175
176
- <spanclass="signature">[`sindexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/sindex-of]</span><spanclass="delimiter">: </span><spanclass="description">return the first index of a specified search element in a single-precision floating-point strided array.</span>
176
177
- <spanclass="signature">[`slastIndexOf( N, searchElement, x, strideX )`][@stdlib/blas/ext/base/slast-index-of]</span><spanclass="delimiter">: </span><spanclass="description">return the last index of a specified search element in a single-precision floating-point strided array.</span>
177
178
- <spanclass="signature">[`slinspace( N, start, stop, endpoint, x, strideX )`][@stdlib/blas/ext/base/slinspace]</span><spanclass="delimiter">: </span><spanclass="description">fill a single-precision floating-point strided array with linearly spaced values over a specified interval.</span>
@@ -180,6 +181,7 @@ var o = ns;
180
181
- <spanclass="signature">[`snansumkbn2( N, x, strideX )`][@stdlib/blas/ext/base/snansumkbn2]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using a second-order iterative Kahan–Babuška algorithm.</span>
181
182
- <spanclass="signature">[`snansumors( N, x, strideX )`][@stdlib/blas/ext/base/snansumors]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using ordinary recursive summation.</span>
182
183
- <spanclass="signature">[`snansumpw( N, x, strideX )`][@stdlib/blas/ext/base/snansumpw]</span><spanclass="delimiter">: </span><spanclass="description">calculate the sum of single-precision floating-point strided array elements, ignoring `NaN` values and using pairwise summation.</span>
184
+
- <spanclass="signature">[`soneTo( N, x, strideX )`][@stdlib/blas/ext/base/sone-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a single-precision floating-point strided array with linearly spaced numeric elements which increment by `1` starting from one.</span>
183
185
- <spanclass="signature">[`srev( N, x, strideX )`][@stdlib/blas/ext/base/srev]</span><spanclass="delimiter">: </span><spanclass="description">reverse a single-precision floating-point strided array in-place.</span>
184
186
- <spanclass="signature">[`ssort2hp( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/ssort2hp]</span><spanclass="delimiter">: </span><spanclass="description">simultaneously sort two single-precision floating-point strided arrays based on the sort order of the first array using heapsort.</span>
185
187
- <spanclass="signature">[`ssort2ins( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/ssort2ins]</span><spanclass="delimiter">: </span><spanclass="description">simultaneously sort two single-precision floating-point strided arrays based on the sort order of the first array using insertion sort.</span>
@@ -197,6 +199,7 @@ var o = ns;
197
199
- <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>
198
200
- <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>
199
201
- <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>
202
+
- <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