What is the math.net equivalent of this type of MATLAB operations on matrices for matrix juxtaposition?
A = [2 2; 3 3]
B = [4 4; 5 5]
C = [A B]
D = [A; B]
Is there a cheat sheet that compares MATLAB/NUMPY to Math.net? That may help me in the future. Thanks.