MATLAB: Matrix to a table

table

Hi,
I have for matrices, A, B, C & D; I'd like to display these in a quadrant, ie A, B (top-L-R), and C,D (bottom L-R), please.

Best Answer

Are you just trying to concatenate them? E.g.,
M = [A B;C D];