Hello
I want to join 2 matrix with the same number of columns and different number of lines, but I'm wondering how can I do this with one command.
I already know how to do this using for's, then, I want to know if there is a command in Java that do the job for me.
For example
int m1[][] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};
int m2[][] = {{10, 11, 12}, {13, 14, 15}};
Magic command to join them into a matrix m
int m = join(m1,m2);
m =
1 2 3
4 5 6
7 8 9
10 11 12
13 14 15