blob: 2a0951b35527e9c8e1be9ce606a278e16177572e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//example 10.6(b)//
clc
//clears the screen//
clear
//clears all variables//
fs=0.02*5000/100;
//full scale error//
disp(fs, 'full scale error (in mV) = ')
e=19.607+fs;
//total possible error//
disp(e, 'total possible error (in mV) = ')
|