blob: 59598c4e37e0ae621bc1a145f18385df76251c3a (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Given that
B2 = 120 //in dB
B1 = 92 //in dB
//Sample Problem 18-5
printf("**Sample Problem 18-5**\n")
//B2 = 10 * log(I2/Io)
//B1 = 10 * log(I1/Io)
r = 10^((B2 - B1)/10) //The ratio
printf("The Ratio of the intensities is %f", r)
|