summaryrefslogtreecommitdiff
path: root/1316/CH1/EX1.10/example1_10.sce
blob: c0d72bf927b09fdfd7752cd026a61ce152ee14df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Chapter 1
//Example 1.10
//Page 28

clear;
clc;

Read=27.5;
T_min=4.95;
T_max=5.05;


//Calculation of possible temperature values
printf("The range of Transfer function is 4.95 to 5.05 mV per degree celcius \n The possible temperature values that could be inferred from reading of 27.5 degree celcius are %.2f and %.2f",Read/T_min,Read/T_max);