summaryrefslogtreecommitdiff
path: root/3293/CH3/EX3.14/Ex3_14.sce
blob: 2378afd70f4fec172f87e31d522365f08e005a24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//page 89
//Example 3.14
clc;
clear;
close;
disp('T is a linear operator on F^2 defined as:');
disp('T(x1,x2) = (x1,0)');
disp('B = {e1,e2} is a standard ordered basis for F^2,then');
x1 = 1;
x2 = 0;
Te1 = [x1 0];
x1 = 0;
x2 = 1;
Te2 = [x1 0];
disp(Te1,'So, Te1 = T(1,0) = ');
disp(Te2,'So, Te2 = T(0,1) = ');
disp('so,matrix T in ordered basis B is: ');
T = [Te1; Te2];
disp(T,'T = ');
//end