summaryrefslogtreecommitdiff
path: root/876/CH2/EX2.5/Ex2_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '876/CH2/EX2.5/Ex2_5.sce')
-rwxr-xr-x876/CH2/EX2.5/Ex2_5.sce12
1 files changed, 12 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