blob: e19fa3da262e13e373084cf3e75795180f5df441 (
plain)
1
2
3
4
5
6
7
8
|
// Example 8.2;//lateral power distribution coefficient
clc;
clear;
close;
th=5;//power beam width angle in degree
ph=0;//lateral angle in degree
L=round((log10(1/2))/(log10(cosd(th))));
disp(L,"lateral power distribution coefficient")
|