You are on page 1of 1

clc;

M = [1 3 -1 6; 2 4 0 -1; 0 -2 3 -1; -1 2 -5 1];


N = [-1 -3 3; 2 -1 6; 1 4 -1; 2 -1 2];

disp (M*N);
disp (N*M);

You might also like