blob: 2820a799054f13de962ba366fbdf394e6c976335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Example no. 4.5
// To calculate the Brewster angle
// Page no. 119
clc;
clear all;
// Given data
Er=4; // Permittivity
x=sqrt((Er-1)/(Er^2-1)); // Sine of brewster angle
theta=asind(x); // Brewster angle
//Answer is varrying due to round off error
// Displaying the result in command window
printf('\n Brewster angle = %0.2f degree',theta);
|