blob: 3e2b1b3fec64f1971f8e52de815c91bf0c2d1a3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 1_37
clc();
clear;
//To find the separation between the slits
lemda=5100 //units in angstroam
lemda=5100*10^-8 //units in cm
D=200 //units in cm
betaa=0.01 //units in mts
betaa=0.01*10^-3 //units in cm
d=(lemda*D)/betaa*10^-3
printf("The separation between the slits is %.2f mts",d)
|