blob: 2b5cfb0f8b75ee6615024824e9fc75bfac8cb37c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Exa 5.4
clc;
clear all;
// Given data
n=4; // Number of full digits
V1=12.98;//Reading 1 to be measured(V)
V2=0.6973;//Reading 2 to be measured(V)
// Solution
Reso=1/10^n; //Resolution
printf(' Resolution is %.4f \n ',Reso);
disp("There are 5 digit places in 4 and 1/2 digits display, therefore 12.98 would be displayed as 12.980");
disp("");
printf(' Resolution on 1V range = %.4f. Any reading upto the 4th decimal can be displayed \n ',1*Reso);
disp("Therefore. 12.98 would be displayed as 12.980 and 0.6973 will be displayed as 0.6973");
disp("");
printf(' Resolution on 10V range = %.3f. Therefore. 12.98 would be dislayed as 12.98 \n ',10*Reso);
disp("Therefore on a 10V range,the reading of 0.6973 would be displayed as o.697 instead of 0.6973");
|