C# Class YAMP.Numerics.TrapezIntegrator

Represents the Trapez integration algorithm - a very simple rule for numerical integration.
Inheritance: Integrator
Exibir arquivo Open project: FlorianRappl/YAMP Class Usage Examples

Public Methods

Method Description
Integrate ( MatrixValue x ) : ScalarValue

Performs the integration.

TrapezIntegrator ( MatrixValue y ) : System

Creates a new instance.

Method Details

Integrate() public method

Performs the integration.
public Integrate ( MatrixValue x ) : ScalarValue
x YAMP.MatrixValue The x values.
return YAMP.ScalarValue

TrapezIntegrator() public method

Creates a new instance.
public TrapezIntegrator ( MatrixValue y ) : System
y YAMP.MatrixValue The values to integrate.
return System