blob: 8f96ec025946b1fc3cc3b25f878498afcc7a4597 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//===========================================================================
//chapter 3 example 2
clc;clear all;
//variable declaration
Am = 205.3*10**-6; //measured value in Ω
A = 201.4*10**-6; //True value in Ω
//calculations
e0 = Am-A; //absolute error in Ω
r = (e0/(A))*100; //relative error in %
//result
mprintf("abslotue error = %3.2e F ",e0);
mprintf("\nrelative error = %3.2f percentage",r);
|