diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /876/CH2/EX2.5 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '876/CH2/EX2.5')
-rwxr-xr-x | 876/CH2/EX2.5/Ex2_5.sce | 12 | ||||
-rwxr-xr-x | 876/CH2/EX2.5/Ex2_5.txt | 7 | ||||
-rwxr-xr-x | 876/CH2/EX2.5/Ex2_5t.txt | 12 |
3 files changed, 31 insertions, 0 deletions
diff --git a/876/CH2/EX2.5/Ex2_5.sce b/876/CH2/EX2.5/Ex2_5.sce new file mode 100755 index 000000000..7b15877e5 --- /dev/null +++ b/876/CH2/EX2.5/Ex2_5.sce @@ -0,0 +1,12 @@ +//caption:Find magnitude of limiting error fot R1 and R2
+//Ex2.5
+clc
+clear
+close
+R1=36//resistance(in ohm)
+R2=75//resistance(in ohm)
+er=0.005//limiting error(in ohm)
+dR1=R1*er
+disp(dR1,'magnitude of limiting error for R1(in ohm)=')
+dR2=R2*er
+disp(dR2,'magnitude of limiting error for R2(in ohm)=')
\ No newline at end of file diff --git a/876/CH2/EX2.5/Ex2_5.txt b/876/CH2/EX2.5/Ex2_5.txt new file mode 100755 index 000000000..2a889e315 --- /dev/null +++ b/876/CH2/EX2.5/Ex2_5.txt @@ -0,0 +1,7 @@ +magnitude of limiting error for R1(in ohm)=
+
+ 0.18
+
+ magnitude of limiting error for R2(in ohm)=
+
+ 0.375
\ No newline at end of file diff --git a/876/CH2/EX2.5/Ex2_5t.txt b/876/CH2/EX2.5/Ex2_5t.txt new file mode 100755 index 000000000..7b15877e5 --- /dev/null +++ b/876/CH2/EX2.5/Ex2_5t.txt @@ -0,0 +1,12 @@ +//caption:Find magnitude of limiting error fot R1 and R2
+//Ex2.5
+clc
+clear
+close
+R1=36//resistance(in ohm)
+R2=75//resistance(in ohm)
+er=0.005//limiting error(in ohm)
+dR1=R1*er
+disp(dR1,'magnitude of limiting error for R1(in ohm)=')
+dR2=R2*er
+disp(dR2,'magnitude of limiting error for R2(in ohm)=')
\ No newline at end of file |