Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ Sorts a one-dimensional ndarray.

```javascript
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var array = require( '@stdlib/ndarray/array' );

var x = array( [ 1.0, -2.0, 3.0, -4.0 ], {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ Circularly shifts the elements of a one-dimensional single-precision floating-po
```javascript
var Float32Array = require( '@stdlib/array/float32' );
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );

var xbuf = new Float32Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/blas/ext/find-index/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ var idx = ndarray2array( out );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var dtype = require( '@stdlib/ndarray/dtype' );
var array = require( '@stdlib/ndarray/array' );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ var idx = ndarray2array( out );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var dtype = require( '@stdlib/ndarray/dtype' );
var array = require( '@stdlib/ndarray/array' );

Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/blas/ext/index-of/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ var idx = ndarray2array( out );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var dtype = require( '@stdlib/ndarray/dtype' );
var array = require( '@stdlib/ndarray/array' );

Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/blas/ext/last-index-of/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ var idx = ndarray2array( out );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var dtype = require( '@stdlib/ndarray/dtype' );
var array = require( '@stdlib/ndarray/array' );

Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/ndarray/base/fliplr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ Returns a view of an input ndarray in which the order of elements along the last
```javascript
var ndarray = require( '@stdlib/ndarray/ctor' );
var getShape = require( '@stdlib/ndarray/shape' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );

var buffer = [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ];
var shape = [ 3, 2 ];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ By default, the function returns an ndarray having a data type determined by the
<!-- eslint-disable id-length -->

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var ndarray = require( '@stdlib/ndarray/base/ctor' );
var base = require( '@stdlib/stats/base/ndarray/cumax' );
var getDType = require( '@stdlib/ndarray/dtype' );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,6 @@ By default, the method returns an ndarray having a data type determined by the o

```javascript
var ndarray = require( '@stdlib/ndarray/base/ctor' );
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var base = require( '@stdlib/stats/base/ndarray/cumax' );
var getDType = require( '@stdlib/ndarray/dtype' );

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ var spreadDimensions = require( '@stdlib/ndarray/spread-dimensions' );
Returns a read-only view of an input [ndarray][@stdlib/ndarray/ctor] where the dimensions of the input [ndarray][@stdlib/ndarray/ctor] are expanded to a specified dimensionality by spreading dimensions to specified dimension indices and inserting dimensions of size one for the remaining dimensions.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var array = require( '@stdlib/ndarray/array' );

// Create a 2x2 ndarray:
Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/stats/cumax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ v = ndarray2array( y );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var getDType = require( '@stdlib/ndarray/dtype' );
var array = require( '@stdlib/ndarray/array' );

Expand Down
1 change: 0 additions & 1 deletion lib/node_modules/@stdlib/stats/cumin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ v = ndarray2array( y );
By default, the function returns an [ndarray][@stdlib/ndarray/ctor] having a [data type][@stdlib/ndarray/dtypes] determined by the function's output data type [policy][@stdlib/ndarray/output-dtype-policies]. To override the default behavior, set the `dtype` option.

```javascript
var ndarray2array = require( '@stdlib/ndarray/to-array' );
var getDType = require( '@stdlib/ndarray/dtype' );
var array = require( '@stdlib/ndarray/array' );

Expand Down
Loading