diff options
Diffstat (limited to '1316/CH1/EX1.9/example1_9.sce')
-rw-r--r-- | 1316/CH1/EX1.9/example1_9.sce | 14 |
1 files changed, 14 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)));
|