expCutoff static method

double expCutoff(
  1. double x
)

Implementation

static double expCutoff(double x)
{
    if (x < logNonAudible)
    {
        return 0.0;
    }
    else
    {
        return exp(x);
    }
}