blob: 9ae2e8bbb7ac1dc79fbb11c0d0942b1c1f5635f0 (
plain)
1
2
3
4
5
6
7
8
|
// Example 2.2.b:Numerical Aperture
clc;
clear;
close;
n1=1.50;//Waveguide Refractive Index
n2=1.47;//Cladding Refractive Index
NA=sqrt(n1^2-n2^2);// Numerical Aperture
disp(NA,"Numerical Aperture is")
|