blob: 390ab9adb5c75a772907f07fb010f426c8ec353a (
plain)
1
2
3
4
5
6
7
|
clc;
clear all;
lambda1 = 5890e-10; // Wavelength of D2 line in meters
lambda2 = 5896e-10; // Wavelength of D1 line in meters
delta = lambda2-lambda1;
d = (lambda1*lambda2)/(2*delta);
disp('m',d,'The two spectral lines of the sodium lines are resolved when d is')
|