Solves the given first order initial value problem using the Runge-Kutta method.

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

Syntax

C#
public KeyValuePair<double[], double[]> Solve(
	FirstOrderInitialValueProblem problem
)
Visual Basic (Declaration)
Public Function Solve ( _
	problem As FirstOrderInitialValueProblem _
) As KeyValuePair(Of Double(), Double())
Visual C++
public:
KeyValuePair<array<double>^, array<double>^> Solve(
	FirstOrderInitialValueProblem^ problem
)

Parameters

problem
Type: CenterSpace.NMath.Analysis..::.FirstOrderInitialValueProblem
The first order initial value problem.

Return Value

The unknown function y as tablulated KeyValuePair's, such that y(tablulatedValues.Key) = tablulatedValues.Value

See Also