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
- [`90824dc`](https://github.com/stdlib-js/stdlib/commit/90824dc2c39a70dd1595c064e67a389f138001fb) - add C `ndarray` API and refactor `blas/ext/base/ssorthp` [(#9698)](https://github.com/stdlib-js/stdlib/pull/9698)
- [`90824dc`](https://github.com/stdlib-js/stdlib/commit/90824dc2c39a70dd1595c064e67a389f138001fb) - **feat:** add C `ndarray` API and refactor `blas/ext/base/ssorthp` [(#9698)](https://github.com/stdlib-js/stdlib/pull/9698) _(by Muhammad Haris, Athan Reines)_
* Fills a one-dimensional single-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.
* Computes the sum of all elements in a one-dimensional single-precision complex floating-point ndarray.
108
128
*
@@ -215,7 +235,6 @@ interface Namespace {
215
235
*
216
236
* @example
217
237
* var Float64Array = require( '@stdlib/array/float64' );
218
-
* var ndarray2array = require( '@stdlib/ndarray/to-array' );
219
238
* var scalar2ndarray = require( '@stdlib/ndarray/base/from-scalar' );
220
239
* var ndarray = require( '@stdlib/ndarray/base/ctor' );
221
240
*
@@ -228,13 +247,10 @@ interface Namespace {
228
247
* var initial = scalar2ndarray( 0.0, 'float64', 'row-major' );
229
248
*
230
249
* var v = ns.dcusumkbn( [ x, y, initial ] );
231
-
* // returns <ndarray>
250
+
* // returns <ndarray>[ 1.0, 4.0, 8.0, 10.0 ]
232
251
*
233
252
* var bool = ( v === y );
234
253
* // returns true
235
-
*
236
-
* var arr = ndarray2array( v );
237
-
* // returns [ 1.0, 4.0, 8.0, 10.0 ]
238
254
*/
239
255
dcusumkbn: typeofdcusumkbn;
240
256
@@ -1847,6 +1863,24 @@ interface Namespace {
1847
1863
*/
1848
1864
szeroTo: typeofszeroTo;
1849
1865
1866
+
/**
1867
+
* Fills a one-dimensional double-precision complex floating-point ndarray with linearly spaced numeric elements which increment by `1` starting from one.
0 commit comments