CubicSpline.Integral Method

Gets the definite integral of the curve between the specified X-coordinates.

DefinitionPermalink

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.7
C#
public override double Integral(
	double lowerBound,
	double upperBound
)

ParametersPermalink

lowerBound  Double
The lower bound of the integration interval.
upperBound  Double
The upper bound of the integration interval.

Return ValuePermalink

Double
The definite integral of the curve between lowerBound and upperBound.

RemarksPermalink

The integral of a spline curve is computed exactly.

The most reliable way to integrate a function that is defined in terms of tabulated data is to fit a spline curve through the data points, and approximate the integral of the function by the integral of the spline.

See AlsoPermalink