summaryrefslogtreecommitdiff
path: root/70/CH3/EX3.1.1/3_1_1.sci
blob: 45b6c7be8b7387d5becd51c918c2d77ebf6c9a5d (plain)
1
2
3
4
5
6
7
8
9
10
//page 143
clear;
close;
clc;
x1=[2;2;-1];
disp(x1,'x1=');
x2=[-1;2;2];
disp(x2,'x2=');
disp(x1'*x2,'x1''*x2=');
disp('Therefore,X1 is orthogonal to x2 .Both have length of sqrt(14).')