Concatenate two matrices in diagonal
[A]=concat(M,N)
matrix
concatenatated matrix
concat produces the horiziontal and vertical concatenation of matrices M and N. concat is an internal function of the Game of Life package for Scilab.
// Concatenate // a 2 by 3 matrix of ones and // a 4 by 5 matrix of random numbers. // M=ones(2,3),.. N=rand(4,5),.. A=concat(M,N)