blob: 2054969e29d8ba234ab84ca18eae43d108e9e536 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc;clear;
//Example 6.6
//given data
COP=13.5;
TH=75+460;//in R
TL=35+460;//in R
//calculations
COPR=1/(TH/TL-1);
if(COPR>=COP)
disp('claim is true');
else
disp('claim is false')
|