blob: b93f90907b2593292a78cf6eff0c0240c8ba0e6c (
plain)
1
2
3
4
5
6
7
|
//Example 3.1
//Limiting Error
//Page no. 45
clc;clear;close;
R=1000;
e=0.1*1000; //limiting error calculation
printf('Magnitude of the Resistor resistence (R) =\n%i <= R <= %i',R-e,R+e)
|