blob: c5a6114c9c87150e00f45a53826bae4ec55f346b (
plain)
1
2
3
4
5
6
7
8
|
clc;
clear all;
n = 200; // Number of fringes observed
d = 0.06e-3; // Distance moved
lambda = (2*d)/n; // Condition for interference is
disp('m',lambda,'The wavelength of light used is')
lamda=lambda*1e10;//conversion in Angstrome
disp('Angstrom',lamda,'The wavelength of light used is ')
|