MATLAB: Concatenation or addition of matrix

matrix manipulation

I need to add or concatenate or mux(whatever is possible) two matrices whose rows are same but columns are different. Is it possible?My matrices are 9*8 and 9*7 and I want 9*15 matrix.

Best Answer

Try this:
Mcat = [M1 M2];