mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
24 lines
533 B
Markdown
24 lines
533 B
Markdown
# Function concat
|
|
|
|
Concatenate two or more matrices Usage: math.concat(A, B, C, ...) math.concat(A, B, C, ..., dim)
|
|
|
|
Where the optional dim is the zero-based number of the dimension to be concatenated.
|
|
|
|
|
|
### Parameters
|
|
|
|
Parameter | Type | Description
|
|
--------- | ---- | -----------
|
|
`args` | ... Array | Matrix |
|
|
|
|
### Returns
|
|
|
|
Type | Description
|
|
---- | -----------
|
|
Array | Matrix | res
|
|
|
|
|
|
|
|
|
|
<!-- Note: This file is automatically generated from source code comments. Changes made in this file will be overridden. -->
|