blob: e466deaba01f71ad5931af02de3a0e4ceb5da1d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Exa 1.7
clc;
clear all;
// Given data
Range= 600; //volgmeter range(volts)
Accu= 0.02; //Accuracy
X= 250; //voltage to be measured(volts)
// Solution
Mag= Accu * Range; //magnitude of limiting error
X_mag = Mag/X * 100; // limiting error at 250V inpercentag
printf('Limiting error when instrument is used to measure at 250V = %.1f percentage \n',X_mag);
|