Click or drag to resize

TwoVariableIntegrator(IIntegrator) Constructor

Constructs a TwoVariableIntegrator with the given one-variable integrator.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public TwoVariableIntegrator(
	IIntegrator integrator
)

Parameters

integrator  IIntegrator
A one-variable integrator for integrating over x and y.
Remarks
A TwoVariableIntegrator has two one-variable integrators, one for each dimension. The given integrator is cloned at construction time. The two integrators are accessible via the DxIntegrator and DyIntegrator properties.
See Also