diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1332/CH6/EX6.9 | |
download | Scilab-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-x | 1332/CH6/EX6.9/6_9.pdf | bin | 0 -> 6075 bytes | |||
-rwxr-xr-x | 1332/CH6/EX6.9/6_9.sce | 15 |
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 Binary files differnew file mode 100755 index 000000000..7873dc648 --- /dev/null +++ b/1332/CH6/EX6.9/6_9.pdf 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 = ')
|