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/concat/README.md
+37-6Lines changed: 37 additions & 6 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
# concat
22
22
23
-
> Concatenate a list of ndarrays along a specified ndarray dimension.
23
+
> Concatenate a list of [ndarrays][@stdlib/ndarray/ctor] along a specified [ndarray][@stdlib/ndarray/ctor] dimension.
24
24
25
25
<!-- Section to include introductory text. Make sure to keep an empty line after the intro `section` element and another before the `/section` close. -->
26
26
@@ -42,7 +42,7 @@ var concat = require( '@stdlib/ndarray/concat' );
42
42
43
43
#### concat( arrays, dim )
44
44
45
-
Concatenates a list of ndarrays along a specified ndarray dimension.
45
+
Concatenates a list of [ndarrays][@stdlib/ndarray/ctor] along a specified [ndarray][@stdlib/ndarray/ctor] dimension.
46
46
47
47
```javascript
48
48
var ndarray =require( '@stdlib/ndarray/ctor' );
@@ -59,17 +59,46 @@ var out = concat( [ x, y ], -1 );
0 commit comments