diff options
Diffstat (limited to '3293/CH2/EX2.19')
-rw-r--r-- | 3293/CH2/EX2.19/Ex2_19.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3293/CH2/EX2.19/Ex2_19.sce b/3293/CH2/EX2.19/Ex2_19.sce new file mode 100644 index 000000000..002acfa84 --- /dev/null +++ b/3293/CH2/EX2.19/Ex2_19.sce @@ -0,0 +1,22 @@ +//page 53
+//Example 2.19
+clear;
+clc;
+close;
+disp('P = ');
+disp('cos(thetha) -sin(thetha)');
+disp('sin(thetha) cos(thetha)');
+disp('Inverse(P) = ');
+disp('cos(thetha) sin(thetha)');
+disp('-sin(thetha) cos(thetha)');
+disp('where, thetha is some real number');
+disp('The basis for R^2 (B'') is the set consisting of vectors (cos(thetha) , sin(thetha)) and (-sin(thetha) , cos(thetha))');
+disp('This basis may be obtained by rotating the standard basis by angle thetha');
+disp('a = [x1 x2]');
+disp('[a]B'' = ');
+disp('|cos(thetha) sin(thetha)| * |x1|');
+disp('|-sin(thetha) cos(thetha)| |x2|');
+disp('or');
+disp('x1'' = x1*cos(thetha) + x2*sin(thetha)');
+disp('x2'' = -x1*sin(thetha) + x2*cos(thetha)');
+//end
|