blob: e4882cfef5be5ac5fd4b4c41da6558d0c93e1dc4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;
clear;
alpha=0.01 //wedge angle in radian
lambda=6000*10^-10 //wavelength in m
n=10 //the fringe observed
//calculation
x=((2*n-1)*lambda)/(4*alpha)
mprintf("The distance at which the 10th fringe will be obtained from the edge of the wedge is = %1.2e m",x)
|