Class TwoVariableIntegrator integrates functions of two variables.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class TwoVariableIntegrator : ICloneable
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class TwoVariableIntegrator _
	Implements ICloneable
Visual C++
[SerializableAttribute]
public ref class TwoVariableIntegrator : ICloneable

Remarks

The two-dimensional integral is computed by breaking up the problem into repeated one-dimensional integrals. A TwoVariableIntegrator has two instances of IIntegrator, one for each dimension, which by default are instances of GaussKronrodIntegrator.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Analysis..::.TwoVariableIntegrator

See Also