blob: 30ba279f3de629463fe75f03ff9d2319e9e790dd (
plain)
1
2
3
4
5
6
7
8
|
//Chapter 5, Example 5.7, Page 129
clc
clear
// Calculate the time
//based on eq 5.74
t = (14.05*10**9/log(2))*log(1+(0.31232/1.37208))
printf("\n Time = %e y ",t);
//Answer may vary due to round off error
|