summaryrefslogtreecommitdiff
path: root/3293/CH2/EX2.9/Ex2_9.sce
blob: ebb7e2a11418d617350cd7e30d14c0d9df93b504 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//page 38
//Example 2.9
clear;
clc;
close;
disp('W1 = ');
disp('x    y');
disp('z    0');
disp('where, x,y,z are scalars in F');
disp('W2 = ');
disp('x    0');
disp('0    y');
disp('where, x,y are scalars in F');
disp('Now, V = W1 + W2');
disp('This is because,');
disp('a    b');
disp('c    d   =  ');
disp('a    b      +     0    0');
disp('c    0            0    d');
disp('And, W1 (intersect) W2) = ');
disp('x    0');
disp('0    0');
//end