Click or drag to resize
Accord.NET (logo)

IUnivariateIntegration Interface

Common interface for multidimensional integration methods.

Namespace:  Accord.Math.Integration
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public interface IUnivariateIntegration : INumericalIntegration, 
	ICloneable

The IUnivariateIntegration type exposes the following members.

Properties
  NameDescription
Public propertyArea
Gets the numerically computed result of the definite integral for the specified function.
(Inherited from INumericalIntegration.)
Public propertyFunction
Gets or sets the unidimensional function whose integral should be computed.
Public propertyRange
Gets or sets the input range under which the integral must be computed.
Top
Methods
  NameDescription
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Public methodCompute
Computes the area of the function under the selected range. The computed value will be available at this class's Area property.
(Inherited from INumericalIntegration.)
Top
See Also