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: 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
@@ -189,6 +189,7 @@ var o = ns;
189
189
- <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>
190
190
- <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>
191
191
- <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>
192
+
- <spanclass="signature">[`ssort( N, order, x, strideX )`][@stdlib/blas/ext/base/ssort]</span><spanclass="delimiter">: </span><spanclass="description">sort a single-precision floating-point strided array.</span>
192
193
- <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>
193
194
- <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>
194
195
- <spanclass="signature">[`ssort2sh( N, order, x, strideX, y, strideY )`][@stdlib/blas/ext/base/ssort2sh]</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 Shellsort.</span>
Copy file name to clipboardExpand all lines: ext/base/ndarray/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
@@ -64,6 +64,7 @@ The namespace exposes the following APIs:
64
64
- <spanclass="signature">[`dnansumors( arrays )`][@stdlib/blas/ext/base/ndarray/dnansumors]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional double-precision floating-point ndarray, ignoring `NaN` values and using ordinary recursive summation.</span>
65
65
- <spanclass="signature">[`dnansumpw( arrays )`][@stdlib/blas/ext/base/ndarray/dnansumpw]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional double-precision floating-point ndarray, ignoring `NaN` values and using pairwise summation.</span>
66
66
- <spanclass="signature">[`doneTo( arrays )`][@stdlib/blas/ext/base/ndarray/done-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional double-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.</span>
67
+
- <spanclass="signature">[`dsort( arrays )`][@stdlib/blas/ext/base/ndarray/dsort]</span><spanclass="delimiter">: </span><spanclass="description">sort a one-dimensional double-precision floating-point ndarray.</span>
67
68
- <spanclass="signature">[`dsorthp( arrays )`][@stdlib/blas/ext/base/ndarray/dsorthp]</span><spanclass="delimiter">: </span><spanclass="description">sort a one-dimensional double-precision floating-point ndarray using heapsort.</span>
68
69
- <spanclass="signature">[`dsortins( arrays )`][@stdlib/blas/ext/base/ndarray/dsortins]</span><spanclass="delimiter">: </span><spanclass="description">sort a one-dimensional double-precision floating-point ndarray using insertion sort.</span>
69
70
- <spanclass="signature">[`dsortsh( arrays )`][@stdlib/blas/ext/base/ndarray/dsortsh]</span><spanclass="delimiter">: </span><spanclass="description">sort a one-dimensional double-precision floating-point ndarray using Shellsort.</span>
@@ -114,6 +115,7 @@ The namespace exposes the following APIs:
114
115
- <spanclass="signature">[`snansumors( arrays )`][@stdlib/blas/ext/base/ndarray/snansumors]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional single-precision floating-point ndarray, ignoring `NaN` values and using ordinary recursive summation.</span>
115
116
- <spanclass="signature">[`snansumpw( arrays )`][@stdlib/blas/ext/base/ndarray/snansumpw]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of a one-dimensional single-precision floating-point ndarray, ignoring `NaN` values and using pairwise summation.</span>
116
117
- <spanclass="signature">[`soneTo( arrays )`][@stdlib/blas/ext/base/ndarray/sone-to]</span><spanclass="delimiter">: </span><spanclass="description">fill a one-dimensional single-precision floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.</span>
118
+
- <spanclass="signature">[`ssort( arrays )`][@stdlib/blas/ext/base/ndarray/ssort]</span><spanclass="delimiter">: </span><spanclass="description">sort a one-dimensional single-precision floating-point ndarray.</span>
117
119
- <spanclass="signature">[`ssorthp( arrays )`][@stdlib/blas/ext/base/ndarray/ssorthp]</span><spanclass="delimiter">: </span><spanclass="description">sort a one-dimensional single-precision floating-point ndarray using heapsort.</span>
118
120
- <spanclass="signature">[`ssum( arrays )`][@stdlib/blas/ext/base/ndarray/ssum]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision floating-point ndarray.</span>
119
121
- <spanclass="signature">[`ssumkbn( arrays )`][@stdlib/blas/ext/base/ndarray/ssumkbn]</span><spanclass="delimiter">: </span><spanclass="description">compute the sum of all elements in a one-dimensional single-precision floating-point ndarray using an improved Kahan–Babuška algorithm.</span>
0 commit comments