blob: 7118228bb3850859ee10152bec1124cf3a5a934d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example no 1-12
//page no. 27
clc;
clear;
//I1/I0=cos(w)^2
//k=I1/I0;
w=30; //angle bw polarizer and analyser in degee
k=cosd(w)^2;
disp(k,'The ratio of optical ray intensity ,I1/I0='); //Result
|