Namespaces

Types in MathNet.Numerics.Integration

Type GaussKronrodRule

Namespace MathNet.Numerics.Integration

Constructors

Static Functions

Methods

Properties

Public Constructors

GaussKronrodRule(int order)

Public Static Functions

Complex ContourIntegrate(Func<double, Complex> f, double intervalBegin, double intervalEnd, Double& error, Double& L1Norm, double targetRelativeError, int maximumDepth, int order)

double Integrate(Func<double, double> f, double intervalBegin, double intervalEnd, Double& error, Double& L1Norm, double targetRelativeError, int maximumDepth, int order)

Public Methods

bool Equals(object obj)

int GetHashCode()

Type GetType()

string ToString()

Public Properties

Double[] GaussWeights get;

Getter that returns a clone of the array containing the Gauss weights.

Double[] KronrodAbscissas get;

Getter that returns a clone of the array containing the Kronrod abscissas.

Double[] KronrodWeights get;

Getter that returns a clone of the array containing the Kronrod weights.

int Order get;

Getter for the order.