blob: 261107a51af54ac3d2be4dd0ca90408d9c374025 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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')
|