blob: c27fb684bb022c3e8293c5f9cd7538efe13a8610 (
plain)
1
2
3
4
5
6
7
8
9
|
clc
// Given that
lambda = 5.461e-7 // wavelength of light in meter
d = 4e-7 // separation between objects in meter
// Sample Problem 45 on page no. 2.55
printf("\n # PROBLEM 45 # \n")
NA = (1.22 * lambda) / (2 * d) // calculation for numerical aperture of objective
printf("\n Standard formula used \n NA = (1.22 * lambda) / (2 * d). \n")
printf("\n Numerical aperture of objective = %f",NA)
|