summaryrefslogtreecommitdiff
path: root/26/CH1/EX1.7.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /26/CH1/EX1.7.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '26/CH1/EX1.7.1')
-rwxr-xr-x26/CH1/EX1.7.1/1_7_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/26/CH1/EX1.7.1/1_7_1.sce b/26/CH1/EX1.7.1/1_7_1.sce
new file mode 100755
index 000000000..070441bb7
--- /dev/null
+++ b/26/CH1/EX1.7.1/1_7_1.sce
@@ -0,0 +1,15 @@
+disp('given vectors u, v and w are')
+u=[5 0 0]'
+disp(u)
+v=[7 2 -6]'
+disp(v)
+w=[9 4 -8]'
+disp(w)
+disp('the augmented matrix is')
+a=[5 7 9 0;0 2 4 0;0 -6 -8 0]
+disp(a)
+disp('R3=R3+3*R2')
+a(3,:)=a(3,:)+3*a(2,:)
+disp(a)
+disp('there are no free variables')
+disp('hence, the homogeneous equation has only trivial solution and the vectors are linearly independent') \ No newline at end of file