IntegrationResult Class

Represents the result of a numerical integration.

Definition

Namespace: Meta.Numerics.Analysis
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public sealed class IntegrationResult : EvaluationResult
Inheritance
Object    EvaluationResult    IntegrationResult

Remarks

This class is returned by various numerical integration methods, including Integrate(FuncDouble, Double, Interval, IntegrationSettings) and Integrate(FuncIReadOnlyListDouble, Double, IReadOnlyListInterval, IntegrationSettings). In addition to an estimate of the integral and the associated uncertainty, it gives a count of the number of function evaluations that were required and the EvaluationSettings that were used for the integration.

Properties

Estimate Gets the estimated value of the integral and its associated error bar.
EvaluationCount Gets the number of function evaluations performed.
(Inherited from EvaluationResult)
Settings Gets the settings used during integration.
Value Gets the estimated value of the integral.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

Operators

(IntegrationResult to Double) Converts the result to a single value.

See Also