blob: fb9a906c0503e465750f94fe1d43a9ccce50e13c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//caption:Find resolution of the meter
//Ex1.5
clc
clear
close
Rmax=100//maximum range of voltmeter(in V)
D=200//division on scale
Sd=0.5//divisions which can be read
V=Rmax/D
R=Sd*V
disp(R,'resolution of the meter is(in V)=')
|