blob: 172a701eb01dbdad5b653e56d198e30ee367bfb3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
lambdaa=5*10**-5 //Wavelength
theta=32 //Angle subtended by the sun at the slit
//Calculations
l=((lambdaa*60*180)/(theta*3.14))
//Result
printf("\n The transverse coherence length is %1.3f cm",l)
|