IntegrationRule Class

Represents a method to compute an approximation to an integral together with an estimate of the error.

Definition

Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public abstract class IntegrationRule
Inheritance
Object  →  IntegrationRule

Constructors

IntegrationRuleInitializes a new instance of the IntegrationRule class

Properties

Order Gets the order of the numerical integrator.

Methods

CreateGaussKronrod15PointRule Returns a new instance of a 15 point Gauss-Kronrod integration rule.
CreateGaussKronrod21PointRule Returns a new instance of a 21 point Gauss-Kronrod integration rule.
CreateGaussKronrod31PointRule Returns a new instance of a 31 point Gauss-Kronrod integration rule.
CreateGaussKronrod41PointRule Returns a new instance of a 41 point Gauss-Kronrod integration rule.
CreateGaussKronrod51PointRule Returns a new instance of a 51 point Gauss-Kronrod integration rule.
CreateGaussKronrod61PointRule Returns a new instance of a 61 point Gauss-Kronrod integration rule.
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Evaluate(Func<Double, Double>, Interval) Evaluates the rule for the specified function and interval.
Evaluate(Func<Double, Double>, Interval, ParallelOptions) Evaluates the rule for the specified function and interval.
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also