blob: f85e7d1aef595d0538901cb7d83a1cae00c5c868 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Example 1.9.7 page 1.26
//To find the Numerical Aperture...
clc;
clear;
del = 0.007; // relative refractive index difference
n1 = 1.45; // RI of core...
NA = n1* sqrt((2*del));
printf('The Numerical Aperture is %.4f',NA);
|