blob: e2c91c9aa16466c14ac4deb8e0717732e1507da1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// Scilab code Ex5.29: Pg:236 (2008)
clc;clear;
Lambda = 6e-05; // Wavelength of the light, cm
NA = 0.12; // numerical aperture
x = Lambda/(2*NA); // Minimum resolvable distance between two nearby objects
RP = 1/x; // Resolving power of a microscope
printf("\nThe resolving power of the microscope = %4d ", RP);
// Result
// The resolving power of the microscope = 4000
|