blob: 7eefc5989cb19e2639dc2b3723cdb01618051fdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Page Number: 14
//Example 1.3
clc;
//Given
pm=3;
pl=4;
l=24;//cm
l1=l/100;//m
//Attenuation
tin=(pm-1)/(pm+1);
tl=(pl-1)/(pl+1);
alp=(1/(2*l1))*log(tl/tin);//Np/m
disp('Np/m',alp,'Attenuation in the line');
|