C# Class YAMP.Numerics.Integrator

The abstract base class for every integrator algorithm.
Exibir arquivo Open project: FlorianRappl/YAMP

Public Methods

Method Description
Integrate ( ) : ScalarValue

Performs the integration with the values hold in Values and standard x values.

Integrate ( MatrixValue x ) : ScalarValue

Performs the integration with the values hold in Values and the given x values.

Integrator ( MatrixValue y ) : System

Creates a new integrator.

Method Details

Integrate() public method

Performs the integration with the values hold in Values and standard x values.
public Integrate ( ) : ScalarValue
return YAMP.ScalarValue

Integrate() public abstract method

Performs the integration with the values hold in Values and the given x values.
public abstract Integrate ( MatrixValue x ) : ScalarValue
x YAMP.MatrixValue The x values.
return YAMP.ScalarValue

Integrator() public method

Creates a new integrator.
public Integrator ( MatrixValue y ) : System
y YAMP.MatrixValue The (y) vector to integrate.
return System