blob: 81426eb7eb258aa60e867d37ad92022f0ff40cc0 (
plain)
1
2
3
4
5
6
|
clc
//to calculate numerical aperture of the objective
lambda=5.461*10^-5 //wavelength in cm
S=5.55*10^-5 //distance in cm
NA=1.22*lambda/(2*S)
disp("the numerical aperture of the objective is NA="+string(NA)+"unitless")
|