blob: d5eb8b8a623b1e33009c226e850473546b50184f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//gain of paraboloid
//given
clc
Da=2//metre
f=2d+9//hertz
v=3d+8//m/s
lemda=v/f
gp=6.4*(Da/lemda)^2
gp_decibles=10*log10(gp)//changing to decibles
disp(gp_decibles,'the gain of paraboloid in decibles')//db
//ERROR in the printing of the book
|