blob: 7de9ad80e0f02f13d1ab44f4cc4aec2840642ed8 (
plain)
1
2
3
4
5
6
7
8
9
|
// Scilab Code Ex3b.3: Page-163 (2008)
clc; clear;
C = 40; // Critical angle for glass to air
mu = 1/sind(C); // Refractive index of glass w.r.t. air
i_p = atand(mu); // Polarizing angle for glass, degree
printf("\nThe polarizing angle for glass = %4.1f degree", i_p);
// Result
// The polarizing angle for glass = 57.3 degree
|