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/ext/linspace/README.md
-4Lines changed: 0 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,6 @@ var linspace = require( '@stdlib/blas/ext/linspace' );
35
35
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.
36
36
37
37
```javascript
38
-
39
38
var x =linspace( [ 4 ], 1.0, 4.0 );
40
39
// returns <ndarray>[ 1.0, 2.0, 3.0, 4.0 ]
41
40
```
@@ -59,7 +58,6 @@ The function accepts the following options:
59
58
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.
60
59
61
60
```javascript
62
-
63
61
var x =linspace( [ 4 ], 1.0, 5.0, false );
64
62
// returns <ndarray>[ 1.0, 2.0, 3.0, 4.0 ]
65
63
```
@@ -81,7 +79,6 @@ var x = linspace( [ 2, 3 ], start, end, endpoint );
81
79
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.
82
80
83
81
```javascript
84
-
85
82
var x =linspace( [ 2, 2 ], 1.0, 4.0, {
86
83
'dims': [ 0, 1 ]
87
84
});
@@ -91,7 +88,6 @@ var x = linspace( [ 2, 2 ], 1.0, 4.0, {
91
88
To specify the output [ndarray][@stdlib/ndarray/ctor][data type][@stdlib/ndarray/dtypes], provide a `dtype` option.
0 commit comments