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/base/dlinspace/README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ The function has the following parameters:
48
48
-**N**: number of indexed elements.
49
49
-**start**: start of interval.
50
50
-**stop**: end of interval.
51
-
-**endpoint**: boolean indicating whether to include the `stop` value when writing values to the input array. If `true`, the input array is filled with evenly spaced values over the closed interval `[start, stop]`. If `false`, the input array is filled with evenly spaced values over the half-open interval `[start, stop)`.
51
+
-**endpoint**: boolean indicating whether to include the `stop` value when writing values to the input array. If `true`, the input array is filled with evenly spaced values over the closed interval `[start, stop]`. If `false`, the input array is filled with evenly spaced values over the half-open interval `[start, stop)`.
@@ -188,15 +188,17 @@ The function accepts the following arguments:
188
188
- **N**: `[in] CBLAS_INT` number of indexed elements.
189
189
- **start**: `[in] double` start of interval.
190
190
- **stop**: `[in] double` end of interval.
191
-
- **endpoint**: `[in] bool` boolean indicating whether to include the `stop` value when writing values to the input array. If `true`, the input array is filled with evenly spaced values over the closed interval `[start, stop]`. If `false`, the input array is filled with evenly spaced values over the half-open interval `[start, stop)`.
191
+
- **endpoint**: `[in] bool` boolean indicating whether to include the `stop` value when writing values to the input array. If `true`, the input array is filled with evenly spaced values over the closed interval `[start, stop]`. If `false`, the input array is filled with evenly spaced values over the half-open interval `[start, stop)`.
#### stdlib_strided_dlinspace_ndarray( N, start, \*X, strideX, offsetX )
199
+
<!-- lint disable maximum-heading-length -->
200
+
201
+
#### stdlib_strided_dlinspace_ndarray( N, start, stop, endpoint, \*X, strideX, offsetX )
200
202
201
203
Fills a double-precision floating-point strided array with linearly spaced values over a specified interval using alternative indexing semantics.
202
204
@@ -213,7 +215,7 @@ The function accepts the following arguments:
213
215
- **N**: `[in] CBLAS_INT` number of indexed elements.
214
216
- **start**: `[in] double` start of interval.
215
217
- **stop**: `[in] double` end of interval.
216
-
- **endpoint**: `[in] bool` boolean indicating whether to include the `stop` value when writing values to the input array. If `true`, the input array is filled with evenly spaced values over the closed interval `[start, stop]`. If `false`, the input array is filled with evenly spaced values over the half-open interval `[start, stop)`.
218
+
- **endpoint**: `[in] bool` boolean indicating whether to include the `stop` value when writing values to the input array. If `true`, the input array is filled with evenly spaced values over the closed interval `[start, stop]`. If `false`, the input array is filled with evenly spaced values over the half-open interval `[start, stop)`.
0 commit comments