Skip to content

Commit 2975334

Browse files
fix: update readme
1 parent 5417fe1 commit 2975334

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/linspace

lib/node_modules/@stdlib/blas/ext/linspace/README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ var linspace = require( '@stdlib/blas/ext/linspace' );
3535
Returns a new [ndarray][@stdlib/ndarray/ctor] filled with linearly spaced values over a specified interval along one or more [ndarray][@stdlib/ndarray/ctor] dimensions.
3636

3737
```javascript
38-
3938
var x = linspace( [ 4 ], 1.0, 4.0 );
4039
// returns <ndarray>[ 1.0, 2.0, 3.0, 4.0 ]
4140
```
@@ -59,7 +58,6 @@ The function accepts the following options:
5958
By default, the function always includes the end of the interval in the list of values written to an output [ndarray][@stdlib/ndarray/ctor]. To exclude the end of the interval, provide an `endpoint` argument.
6059

6160
```javascript
62-
6361
var x = linspace( [ 4 ], 1.0, 5.0, false );
6462
// returns <ndarray>[ 1.0, 2.0, 3.0, 4.0 ]
6563
```
@@ -81,7 +79,6 @@ var x = linspace( [ 2, 3 ], start, end, endpoint );
8179
By default, the function generates linearly spaced values along the last dimension of an output [ndarray][@stdlib/ndarray/ctor]. To perform the operation over specific dimensions, provide a `dims` option.
8280

8381
```javascript
84-
8582
var x = linspace( [ 2, 2 ], 1.0, 4.0, {
8683
'dims': [ 0, 1 ]
8784
});
@@ -91,7 +88,6 @@ var x = linspace( [ 2, 2 ], 1.0, 4.0, {
9188
To specify the output [ndarray][@stdlib/ndarray/ctor] [data type][@stdlib/ndarray/dtypes], provide a `dtype` option.
9289

9390
```javascript
94-
9591
var x = linspace( [ 4 ], 1.0, 4.0, {
9692
'dtype': 'float32'
9793
});

0 commit comments

Comments
 (0)