Output functions are functions supplied by the user to derived ODE solvers. These functions are called by solver during 1. Initialization. Before the first integration step is performed. 2. After each integration step. 3. When the solver is complete. Output functions are called with an OutputFunctionFlag parameter indicating under which of the above conditions it is being invoked.

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

Syntax

C#
public enum OutputFunctionFlag
Visual Basic (Declaration)
Public Enumeration OutputFunctionFlag
Visual C++
public enum class OutputFunctionFlag

Members

Member nameDescription
Initialize
Value of the output flag when the output function is called before the first integration step.
IntegreationStep
Value of the output flag when the output function is called after each integration step.
Done
Value of the output flag when the output function is called after the last integration step.

See Also