linearToDecibels static method

double linearToDecibels(
  1. double x
)

Implementation

static double linearToDecibels(double x)
{
    return 20.0 * log10(x);
}