Skip to content

normcdf is not supported using MSVC for use_dll

normcdf has a one line implementation using standard library functions (included in MSVC), namely:

double normcdf(double value)
{
   return 0.5 * erfc(-value * M_SQRT1_2);
}

It seems a little unnecessary for this not to be supported with MSVC.