blob: 54ea22b2ed80b30f608ac1f9b5bc24cf340de128 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Example 3.4.2 page 3.43
clc;
clear;
n= 1.48;
n1= 3.6;
R= (n1-n)^2/(n1+n)^2;
printf("The Fresnel Reflection is %.4f",R);
L= -10*log10(1-R);
printf("\n\nPower loss is %.2f dB",L);
|