summaryrefslogtreecommitdiff
path: root/3537/CH3/EX3.1/Ex3_1.sce
blob: 001f99696bccf9d8d99475cd7cfcda2070d73652 (plain)
1
2
3
4
5
6
7
8
9
//Example 3_1
clc();
clear;
//To calculate the thickness of a half wave plate
lemda=500*10^-9                      //units in meters
ue=1.553
u0=1.544
t=(lemda/(2*(ue-u0)))*10^3
printf("Thickness of quartz half wave plate is %.4f mm",t)