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
-[`0ede0da`](https://github.com/stdlib-js/stdlib/commit/0ede0dafa46ddea7dfce7be63250ca9ae0c1c546) - **fix:** add missing imports in `ndarray/base/unary-reduce-subarray`[(#6642)](https://github.com/stdlib-js/stdlib/pull/6642)_(by Muhammad Haris)_
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -140,6 +140,8 @@ Each provided ndarray should be an object with the following properties:
140
140
-**offset**: index offset.
141
141
-**order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
142
142
143
+
#### TODO: document factory method
144
+
143
145
</section>
144
146
145
147
<!-- /.usage -->
@@ -158,7 +160,7 @@ Each provided ndarray should be an object with the following properties:
158
160
159
161
where
160
162
161
-
- **arrays**: array containing a subarray from the input ndarray and any additional ndarray arguments as zero-dimensional ndarrays.
163
+
- **arrays**: array containing a subarray of the input ndarray and any additional ndarray arguments as zero-dimensional ndarrays.
162
164
- **options**: function options (_optional_).
163
165
164
166
- For very high-dimensional ndarrays which are non-contiguous, one should consider copying the underlying data to contiguous memory before performing a reduction in order to achieve better performance.
0 commit comments