diff options
Diffstat (limited to '876/CH2/EX2.5/Ex2_5t.txt')
-rwxr-xr-x | 876/CH2/EX2.5/Ex2_5t.txt | 12 |
1 files changed, 12 insertions, 0 deletions
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 |