Calculate the integral of f(x) over the finite interval (a,b) using double exponential integration.
double f(double x) { return x^^2 * log(1/x); } auto i = integrateDE(&f, 0.0, 1.0);
See Implementation
Calculate the integral of f(x) over the finite interval (a,b) using double exponential integration.