diff options
Diffstat (limited to '3293/CH7/EX7.1/Ex7_1.sce')
-rw-r--r-- | 3293/CH7/EX7.1/Ex7_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3293/CH7/EX7.1/Ex7_1.sce b/3293/CH7/EX7.1/Ex7_1.sce new file mode 100644 index 000000000..496491be0 --- /dev/null +++ b/3293/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,14 @@ +//page 227
+//Example 7.1
+clc;
+clear;
+close;
+disp('T is a linear operator on F^2 represented by the matrix:');
+A = [0 0;1 0];
+disp(A,'A = ');
+disp('e1 is a cyclic vector.');
+disp('if beta = (a,b)');
+disp('then with , g = a+ bx');
+disp('beta = g(T)e1');
+disp('Cyclic subspace generated by e2 is 1-D space spanned by it.');
+//end
|