diff options
Diffstat (limited to '26/CH6/EX6.2.1')
-rwxr-xr-x | 26/CH6/EX6.2.1/6_2_1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/26/CH6/EX6.2.1/6_2_1.sce b/26/CH6/EX6.2.1/6_2_1.sce new file mode 100755 index 000000000..fabf3d665 --- /dev/null +++ b/26/CH6/EX6.2.1/6_2_1.sce @@ -0,0 +1,10 @@ +disp('To verify if u v and w are orthogonal')
+u=[-1;4;-3]
+v=[5;2;1]
+w=[3;-4;-7]
+disp(w,v,u)
+disp('u.v=')
+disp(v'*u)
+disp('u.w=')
+disp(u'*w)
+disp('Since u.w is not equal to zero, the set {u v w} is not orthogonal.')
\ No newline at end of file |