blob: 35c08b0ce6a0a2f42be9978bcd632375f99a0a43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//Example 7_2
clc();
clear;
//To find the fraction of initial intensity
alpha=-2.2
l=2 //units in KM
//Case (a) when L=2
It_I0=10^(alpha*l/10)
printf("The fraction of initial intensity left when L=2 It/I0=%.3f\n",It_I0)
//Case (b) when L=6
l=6 //units in KM
It_I0=10^(alpha*l/10)
printf("The fraction of initial intensity left when L=6 It/I0=%.3f\n",It_I0)
|