summaryrefslogtreecommitdiff
path: root/1332/CH6/EX6.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1332/CH6/EX6.9
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 '1332/CH6/EX6.9')
-rwxr-xr-x1332/CH6/EX6.9/6_9.pdfbin0 -> 6075 bytes
-rwxr-xr-x1332/CH6/EX6.9/6_9.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/1332/CH6/EX6.9/6_9.pdf b/1332/CH6/EX6.9/6_9.pdf
new file mode 100755
index 000000000..7873dc648
--- /dev/null
+++ b/1332/CH6/EX6.9/6_9.pdf
Binary files differ
diff --git a/1332/CH6/EX6.9/6_9.sce b/1332/CH6/EX6.9/6_9.sce
new file mode 100755
index 000000000..30679323f
--- /dev/null
+++ b/1332/CH6/EX6.9/6_9.sce
@@ -0,0 +1,15 @@
+//Example 6.9
+//Complex System of Linear Equation
+//Page no. 244
+clc;clear;close;
+
+for i=1:7
+ s=0;
+ for j=1:7
+ A(i,j)=j^i
+ s=s+(-1)^(j+1)*A(i,j)
+ end
+ B(i,1)=s;
+end
+X=inv(A)*B
+disp(X,'The Solution = ')