blob: a08a0966f7af46a63e8f7f2ca75119dc8236296f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
clear all;
n = 200; // Number of fringes observed
d = 0.589e-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 ')
//rounding off value of lambda in meter due to scilab..
//there is mistake in the answer of book.. checked in calculator also..
|