diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /1445/CH1/EX1.3/Ex1_3.sce | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '1445/CH1/EX1.3/Ex1_3.sce')
-rw-r--r-- | 1445/CH1/EX1.3/Ex1_3.sce | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/1445/CH1/EX1.3/Ex1_3.sce b/1445/CH1/EX1.3/Ex1_3.sce index fdaccbce2..fb42a65be 100644 --- a/1445/CH1/EX1.3/Ex1_3.sce +++ b/1445/CH1/EX1.3/Ex1_3.sce @@ -1,6 +1,7 @@ //CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS //Example 3 +clc; disp("CHAPTER 1"); disp("EXAMPLE 3"); @@ -29,7 +30,7 @@ req4=req2+req3; req5=(req1*req4)/(req1+req4); //parallel combination of resistors req6=req5+r1; //series combination of resistors req7=(req6*r2)/(req6+r2); -disp(sprintf("The equivalent resistance between points A and B is %.2f Ω",req7)); +disp(sprintf("The equivalent resistance between points A and B is %f Ω",req7)); //END |