summaryrefslogtreecommitdiff
path: root/1316/CH1/EX1.9
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1316/CH1/EX1.9
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1316/CH1/EX1.9')
-rw-r--r--1316/CH1/EX1.9/example1_9.sce14
-rw-r--r--1316/CH1/EX1.9/resultexample1_9.txt2
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