blob: 9e906bb4838bac3d375eef9ada183b0643fd575b (
plain)
1
2
3
4
5
6
7
8
9
|
//Chapter 10, Example 10.4, Page 283
clc
clear
// k of a homogeneous
f = 687/(687 +(0.0034*40000))
k = 2.07*f
printf("f = %f \n",f)
printf(" k = %f \n",k)
//Answer may vary due to round off error
|