mirror of
https://github.com/jtdx-project/jtdx
synced 2026-08-13 17:35:38 -04:00
5 lines
94 B
Fortran
5 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
|