centsToHertz static method

double centsToHertz(
  1. double x
)

Implementation

static double centsToHertz(double x)
{
    return 8.176 * pow(2.0, (1.0 / 1200.0) * x);
}