1 2 3 4 5 6 7 8
//Inverse of A Matrix clearglobal() clc; A=[1 -1 2;3 0 1;1 0 2] printf('Matrix is') disp(A) printf('Inverse is') disp (inv(A))