blob: 2cd6c39c08704c7c44a1218f6b4a8a34f236705b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
clc
//
//
//
//Variable declaration
c=3*10**8
delf=3000 //Bandwidth
//Calculations
lc=(c/delf)
//Result
printf("\n The coherence length of the laser beam is %0.3f m or 10**5 m",lc)
|