diff options
Diffstat (limited to '149/CH2')
-rwxr-xr-x | 149/CH2/EX2.16/ex16.sce | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/149/CH2/EX2.16/ex16.sce b/149/CH2/EX2.16/ex16.sce index a232e0e94..c01728a6a 100755 --- a/149/CH2/EX2.16/ex16.sce +++ b/149/CH2/EX2.16/ex16.sce @@ -1,8 +1,8 @@ -clear
-clc
-A=[0 1 2;1 2 3;2 3 4]
-B=[1 -2;-1 0;2 -1]
-disp("AB= ")
-A*B
-disp("BA= ")
-B*A
\ No newline at end of file +clear +clc +A=[0 1 2;1 2 3;2 3 4] +B=[1 -2;-1 0;2 -1] +disp("AB= ") +A*B +disp("BA= ") +B'*A
\ No newline at end of file |