blob: 2e4f216186d02f6ae5f10a766f9b400053544fe9 (
plain)
1
2
3
4
5
6
7
8
9
|
// Example 5.9;resolution
clc;
clear;
format('v',6)
// given :
fsr=9.999;//full scale reading in volts
d=9999;//number of divisions
R=(1/d)*fsr*10^3;//resolution
disp(R,"resolution is ,(mV)=")
|