Class FirstOrderInitialValueProblem represents a first order initial value differential equation.

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

Syntax

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

Remarks

If y = y(x) is the unknown function, the first order initial value problem may be stated as y' = F(x,y), y(x0) = y0 where y' denotes the first derivative of y with respect to x, F is a continuous funtion with bounded partial derivatives, and y0 is the value of the unknown function y at the point x0.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Analysis..::.FirstOrderInitialValueProblem

See Also