blob: 542cc876a79a12b98422007d5127a1f77e9d07f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 9.2: The thickness
clc;
clear;
close;
//given data :
format('v',7)
lamda=589.3*10^-9;// in m
ne=1.486;
no=1.658;
x=(lamda/(2*(no-ne)))*10^3;
disp(x,"The thickness of the a quarter wave plate,x(mm) = ")
|