mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-01 16:13:57 -04:00
6 lines
94 B
Fortran
6 lines
94 B
Fortran
|
real function db(x)
|
||
|
db=-99.0
|
||
|
if(x.gt.1.259e-10) db=10.0*log10(x)
|
||
|
return
|
||
|
end function db
|