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/ndarray/flatten-from/README.md
+2-23Lines changed: 2 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ limitations under the License.
20
20
21
21
# flattenFrom
22
22
23
-
> Return a copy of an input [ndarray][@stdlib/ndarray/ctor], where all dimensions of the input [ndarray][@stdlib/ndarray/ctor] are flattened starting from a specific dimension.
23
+
> Return a copy of an input [ndarray][@stdlib/ndarray/ctor], where all dimensions of the input [ndarray][@stdlib/ndarray/ctor] are flattened starting from a specified dimension.
24
24
25
25
<sectionclass="intro">
26
26
@@ -38,25 +38,18 @@ var flattenFrom = require( '@stdlib/ndarray/flatten-from' );
38
38
39
39
#### flattenFrom( x, dim\[, options] )
40
40
41
-
Returns a copy of an input [ndarray][@stdlib/ndarray/ctor], where all dimensions of the input [ndarray][@stdlib/ndarray/ctor] are flattened starting from a specific dimension.
41
+
Returns a copy of an input [ndarray][@stdlib/ndarray/ctor], where all dimensions of the input [ndarray][@stdlib/ndarray/ctor] are flattened starting from a specified dimension.
42
42
43
43
```javascript
44
44
var array =require( '@stdlib/ndarray/array' );
45
-
var shape =require( '@stdlib/ndarray/shape' );
46
45
var ndarray2array =require( '@stdlib/ndarray/to-array' );
0 commit comments