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

clear;
clc;

TF=5;
A=1;


//Calculation of possible range of transfer function
printf("The transfer function will be = %.2f mV per degree celcius \n",((A/100)*(TF)));
printf("Thus the range is %.2f mV per degree celcius to %.2f mV per degree celcius \n",(TF)-((A/100)*(TF)),(TF)+((A/100)*(TF)));