blob: 59eda7732f84086461c2bf928c82811f6b889a49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
clear
//Input data
I=0.09//Ratio of observed intensity to the initial intensity
//Calculations
q=acosd(sqrt(I))//Angle between the plane of transmission of the analyser and that of the polarizer in degrees
//Output
printf('Angle between the plane of transmission of the analyser and that of the polarizer is %3.2f degrees',q)
|