diff options
Diffstat (limited to '1316/CH1/EX1.9')
-rw-r--r-- | 1316/CH1/EX1.9/example1_9.sce | 14 | ||||
-rw-r--r-- | 1316/CH1/EX1.9/resultexample1_9.txt | 2 |
2 files changed, 16 insertions, 0 deletions
diff --git a/1316/CH1/EX1.9/example1_9.sce b/1316/CH1/EX1.9/example1_9.sce new file mode 100644 index 000000000..ebcc9ba14 --- /dev/null +++ b/1316/CH1/EX1.9/example1_9.sce @@ -0,0 +1,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)));
diff --git a/1316/CH1/EX1.9/resultexample1_9.txt b/1316/CH1/EX1.9/resultexample1_9.txt new file mode 100644 index 000000000..14ed0e92b --- /dev/null +++ b/1316/CH1/EX1.9/resultexample1_9.txt @@ -0,0 +1,2 @@ + The transfer function will be = 0.05 mV per degree celcius
+Thus the range is 4.95 mV per degree celcius to 5.05 mV per degree celcius
|