blob: 56b1cba1ced9c97611acc97f8f9c2021d00a87ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
clc
//
//
//
//Variable declaration
lambdaa=5400*10**-10 //Wavelength
tc=10**-10 //coherence time
c=3*10**-8
//Calculations
dom=((lambdaa)/(tc*c))*10**-10
//Result
printf("\n The Degree of Monochromaticity is %2.0f *10**-6",dom)
|