summaryrefslogtreecommitdiff
path: root/2870/CH1/EX1.4/Ex1_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '2870/CH1/EX1.4/Ex1_4.sce')
-rwxr-xr-x2870/CH1/EX1.4/Ex1_4.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2870/CH1/EX1.4/Ex1_4.sce b/2870/CH1/EX1.4/Ex1_4.sce
new file mode 100755
index 000000000..261107a51
--- /dev/null
+++ b/2870/CH1/EX1.4/Ex1_4.sce
@@ -0,0 +1,14 @@
+clc;clear;
+//Example 1.4
+
+//given values
+Tc=10;//change in temp in Celcius
+
+//calculation
+Tk=Tc;
+Tr=1.8*Tk;
+Tf=Tr;
+//calculated using the corealtions b/w these scales
+disp(Tk,'the corresponding change in K');
+disp(Tr,'the corresponding change in R');
+disp(Tf,'the corresponding change in F')