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: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -702,6 +702,7 @@ A total of 40 issues were closed in this release:
702
702
703
703
<details>
704
704
705
+
-[`141399c`](https://github.com/stdlib-js/stdlib/commit/141399ca349aa5d998ba9d5df2e46f4ceb316210) - **docs:** improve doctests for ndarray instances in `ndarray/flatten-by`[(#9666)](https://github.com/stdlib-js/stdlib/pull/9666)_(by Shreelaxmi Hegde)_
705
706
-[`bb5b731`](https://github.com/stdlib-js/stdlib/commit/bb5b7312bfd8a87b84615de701b8c1e132521e93) - **docs:** improve doctests for ndarray instances in `ndarray/flatten-from`[(#9668)](https://github.com/stdlib-js/stdlib/pull/9668)_(by Shreelaxmi Hegde)_
706
707
-[`3686f6f`](https://github.com/stdlib-js/stdlib/commit/3686f6f542397f4000ce69cd3f1e9f5052d68321) - **docs:** improve doctests for ndarray instances in `ndarray/flatten`[(#9665)](https://github.com/stdlib-js/stdlib/pull/9665)_(by Shreelaxmi Hegde)_
707
708
-[`279f181`](https://github.com/stdlib-js/stdlib/commit/279f1817651a774f8d97f053529ac2bd94a94f91) - **docs:** update parameter name and description in `ndarray/base` TypeScript declaration [(#9660)](https://github.com/stdlib-js/stdlib/pull/9660)_(by stdlib-bot)_
By default, the input [ndarray][@stdlib/ndarray/ctor] is flattened in lexicographic order. To flatten elements in a different order, specify the `order` option.
108
100
109
101
```javascript
110
102
var array =require( '@stdlib/ndarray/array' );
111
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
By default, the output ndarray [data type][@stdlib/ndarray/dtypes] is inferred from the input [ndarray][@stdlib/ndarray/ctor]. To return an ndarray with a different [data type][@stdlib/ndarray/dtypes], specify the `dtype` option.
132
120
133
121
```javascript
134
122
var array =require( '@stdlib/ndarray/array' );
135
123
var dtype =require( '@stdlib/ndarray/dtype' );
136
-
var ndarray2array =require( '@stdlib/ndarray/to-array' );
0 commit comments