Click or drag to resize

DiscreteDataIntegratorIntegrate(DoubleVector, Double, Double) Method

Returns the approximate integral of the discrete data assuming unit sample intervals.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public double Integrate(
	DoubleVector y,
	double yStartPrime = 0,
	double yEndPrime = 0
)

Parameters

y  DoubleVector
The equally spaced sampled values.
yStartPrime  Double  (Optional)
The first derivative estimate at the first sample. Used only by the CubicSpline method.
yEndPrime  Double  (Optional)
The first derivative estimate at the last sample. Used only by the CubicSpline method.

Return Value

Double
Area summation under discrete data.
See Also