public sealed class IntegrationResult : EvaluationResult
Public NotInheritable Class IntegrationResult
Inherits EvaluationResult
public ref class IntegrationResult sealed : public EvaluationResult
[<SealedAttribute>]
type IntegrationResult =
class
inherit EvaluationResult
end
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.
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. |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode | Serves as the default hash function. (Inherited from Object) |
GetType | Gets the Type of the current instance. (Inherited from Object) |
ToString | Returns a string that represents the current object. (Inherited from Object) |
(IntegrationResult to Double) | Converts the result to a single value. |