Newer
Older

Kristoffer Tondel
committed
#include <complex>
#include <cmath>
class AdaptivKvadratur
{
public:
AdaptivKvadratur();
std::complex<double> integrate(double a, double b, double omega,
int n, double epsilon);

Kristoffer Tondel
committed
std::complex<double> function(double a,double omega, int n);