blob: 87b1945d769b914c8aa697d671ac6891169040f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example number 12.10, Page number 266
clc;clear;
close;
//Variable declaration
theta0=26.80*%pi/180; //acceptance angle(radian)
//Calculation
NA=sin(theta0); //numerical aperture
//Result
printf("numerical aperture is %.5f",NA)
|