diff options
Diffstat (limited to '3293/CH1/EX1.13')
-rw-r--r-- | 3293/CH1/EX1.13/Ex1_13.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3293/CH1/EX1.13/Ex1_13.sce b/3293/CH1/EX1.13/Ex1_13.sce new file mode 100644 index 000000000..49d5376b3 --- /dev/null +++ b/3293/CH1/EX1.13/Ex1_13.sce @@ -0,0 +1,23 @@ +//page 20
+//Example 1.13
+clear;
+close;
+clc;
+disp('A 2*2 elementary matrix is one of the following:');
+A = [0 1;1 0];
+disp(A);
+disp('---------------------');
+disp('1 c');
+disp('0 1');
+disp('---------------------');
+disp('1 0');
+disp('c 1');
+disp('---------------------');
+disp('c 0');
+disp('0 1');
+disp('where, c is not equal to 0');
+disp('---------------------');
+disp('1 0');
+disp('0 c');
+disp('where, c is not equal to 0');
+//end
|