diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH1/EX1.51 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1445/CH1/EX1.51')
-rw-r--r-- | 1445/CH1/EX1.51/ch1_ex_51.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/1445/CH1/EX1.51/ch1_ex_51.sce b/1445/CH1/EX1.51/ch1_ex_51.sce new file mode 100644 index 000000000..769c71b81 --- /dev/null +++ b/1445/CH1/EX1.51/ch1_ex_51.sce @@ -0,0 +1,23 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 51 + +disp("CHAPTER 1"); +disp("EXAMPLE 51"); + +//SOLUTION +//(9)I1+(-5)I2+(-3)I3=5..........eq (1) +//(-5)I1+(8)I2+(-1)I3=5..........eq (2) +//(-3)I1+(-1)I2+(6)I3=3..........eq (3) +A=[9 -5 -3;-5 8 -1;-3 -1 6]; +b=[5;5;3]; +x=inv(A)*b; +I1=x(1,:); //to access the 1st element of 3X1 matrix +I2=x(2,:); //to access the 2nd element of 3X1 matrix +I3=x(3,:); //to access the 3rd element of 3X1 matrix +disp(sprintf("Current i1 is %f A (loop ABGH)",I1)); +disp(sprintf("Current i2 is %f A (loop BCDH)",I2)); +disp(sprintf("Current i3 is %f A (loop GDEF)",I3)); + +//END + + |