diff options
Diffstat (limited to '413/CH2/EX2.2')
-rw-r--r-- | 413/CH2/EX2.2/Example_2_2.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/413/CH2/EX2.2/Example_2_2.sce b/413/CH2/EX2.2/Example_2_2.sce new file mode 100644 index 000000000..81e791613 --- /dev/null +++ b/413/CH2/EX2.2/Example_2_2.sce @@ -0,0 +1,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))
\ No newline at end of file |