add a matrix at the end of the other one.

Just a very simple question :

I have two matrix,let say matrix1 and matrix2.

I want to add matrix 2 at the end of matrix 1 and get matrix 3 as result in this way:

F(matrix1 , matrix2) => matrix 3

 |1.0  2.0  3.0|       |0.0  2.0  4.0|      
F|4.0  5.0  6.0|   ,   |1.0  4.5  2.2|   =>   
 |7.0  8.0  9.0|       |1.1  4.3  5.2|      
|1.0  2.0  3.0|       
|4.0  5.0  6.0|
|7.0  8.0  9.0|
|0.0  2.0  4.0|
|1.0  4.5  2.2|
|1.1  4.3  5.2|  


Thank you for your answer in advance

Hello,

I'm not sure if I understand what you want.

Have you tried the concatenate node?

Nico

thank you!