blob: b78261f7922d71a9eb3ff8db57e242af3fb44067 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//caption:Find limiting error when measured voltage is(a)V1(b)V2
//Ex2.9
clc
clear
close
Ar=0.01//magnitude of accuracy(in V)
V1=50//measured voltage(in V)
V2=25//measured voltage(in V)
Vmax=100//maximum range of voltage
dA=Ar*Vmax
er1=(dA/V1)*100
disp(er1,'limiting error when measured voltage is V1(in %)=')
er2=(dA/V2)*100
disp(er2,'limiting error when measured voltage is V2(in %)=')
|