blob: e09a3f468a3b60f9251ba3dbc52d663b80bc253c (
plain)
1
2
3
4
5
6
7
8
9
|
//Example 2.14 //Radius of half period element
clc;
clear;
//given data
f=50;//focal length of convex lens in cm
w=5D-5;// wavelength used in cm
n=1;// order of principal maxima
r=sqrt(n*f*w);// radius of half period element
disp(r,"Radius of half period element in cm")
|