summaryrefslogtreecommitdiff
path: root/3673/CH2/EX2.a.7/Example_a_2_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3673/CH2/EX2.a.7/Example_a_2_7.sce')
-rw-r--r--3673/CH2/EX2.a.7/Example_a_2_7.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3673/CH2/EX2.a.7/Example_a_2_7.sce b/3673/CH2/EX2.a.7/Example_a_2_7.sce
new file mode 100644
index 000000000..60d809936
--- /dev/null
+++ b/3673/CH2/EX2.a.7/Example_a_2_7.sce
@@ -0,0 +1,11 @@
+//Example 2_7 page no:91
+clc;
+A=[0.93,-0.1,
+ -0.1,0.443];
+B=[17.29,
+ 7.143];
+X=inv(A)*B;
+V1=X(1);
+V2=X(2);
+V=3*((0.93*V1)-(0.1*V2));
+disp(V,"the voltage V in the cicuit is (in V)");