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