How can I concatenate multiple rows in a matrix

Posted by Matthijs on Stack Overflow See other posts from Stack Overflow or by Matthijs
Published on 2010-03-19T10:21:59Z Indexed on 2010/03/19 10:41 UTC
Read the original article Hit count: 235

Filed under:
|

In Java I would like to concatenate an array (a[], fixed length) to an array of the same length, to create a matrix M[2][length of a]. This way I would like to subsequently paste more of those arrays onto the matrix. (Comparable to the Matlab vertcat function..C=[A;B]) Is this possible? Thanks

© Stack Overflow or respective owner

Related posts about concatenation

Related posts about matrix