diff options
Diffstat (limited to '1316/CH1/EX1.10/example1_10.sce')
-rw-r--r-- | 1316/CH1/EX1.10/example1_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1316/CH1/EX1.10/example1_10.sce b/1316/CH1/EX1.10/example1_10.sce new file mode 100644 index 000000000..c0d72bf92 --- /dev/null +++ b/1316/CH1/EX1.10/example1_10.sce @@ -0,0 +1,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);
+
|