blob: bb2f9fd2a385d6dca61a0818247750295fb8c7dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//===========================================================================
//chapter 3 example 6
clc;clear all;
//variable declaration
e = 0.01; //acuuracy
v = 150; //voltage in V
v1 = 83; // measured voltage in V
//calculations
dV = e*v; //magnitude of the limiting error of the instrument in V
er = (dV/(v1))*100; //percentage limiting error at v1 voltage in %
//result
mprintf("limmiting error in case of 83V is = %3.2f percentage',er);
|