Message Boards Message Boards

0
|
5272 Views
|
1 Reply
|
1 Total Likes
View groups...
Share
Share this post:

matrix form

Posted 9 years ago

Hi, could any one please help me? How can I join two matrix

[s1] [s2]

enter image description here

POSTED BY: m m

Given that s1 and s2 are two matrix with the same dimensions, you can do it in many ways, just the two first I can think of:

Join[s1, s2]
ArrayFlatten[{{s1}, {s2}}]

If you want to join s2 at the right of s2 instead of below:

Join[s1, s2, 2]
ArrayFlatten[{{s1, s2}}]
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract