summaryrefslogtreecommitdiff
path: root/964/CH11/EX11.4/11_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '964/CH11/EX11.4/11_4.sce')
-rwxr-xr-x964/CH11/EX11.4/11_4.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/964/CH11/EX11.4/11_4.sce b/964/CH11/EX11.4/11_4.sce
new file mode 100755
index 000000000..203c4e36b
--- /dev/null
+++ b/964/CH11/EX11.4/11_4.sce
@@ -0,0 +1,11 @@
+//clc()
+A = [1,0.5,1/3;1,2/3,1/2;1,3/4,3/5];
+B = [1.833333;2.166667;2.35];
+U = inv(A);
+X = U*B;
+x = det(X(1,1));
+y = det(X(2,1));
+z = det(X(3,1));
+disp(x,"x = ")
+disp(y,"y = ")
+disp(z,"z = ")