summaryrefslogtreecommitdiff
path: root/1332/CH6/EX6.7/6_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1332/CH6/EX6.7/6_7.sce')
-rwxr-xr-x1332/CH6/EX6.7/6_7.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/1332/CH6/EX6.7/6_7.sce b/1332/CH6/EX6.7/6_7.sce
new file mode 100755
index 000000000..54da84f31
--- /dev/null
+++ b/1332/CH6/EX6.7/6_7.sce
@@ -0,0 +1,9 @@
+//Example 6.7
+//Wilkinson Method
+//Page no. 240
+clc;clear;close;
+
+A=[0.3*10^5,0.212,0.332;0.216,0.376,0.477;0.173,0.663,0.626];
+B=[0.235;0.128;0.285];
+X=inv(A)
+disp(X*B,'Final Solution = ') \ No newline at end of file