summaryrefslogtreecommitdiff
path: root/413/CH2/EX2.2/Example_2_2.sce
blob: 81e79161395bbb7c647508c29ceecbaf41646c03 (plain)
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))