Altaxo.Calc.Ode.Obsolete Namespace |
Contains legacy ordinary differential equation solvers retained for compatibility.
Classes| | Class | Description |
|---|
 | Characters |
Represents a character array and provides methods for manipulating and converting character data.
|
 | CommonBlock |
Represents a common block that can contain double-precision, single-precision, and integer data.
|
 | FortranLib |
Provides helper functions that emulate selected Fortran intrinsic string operations.
|
 | Gauss | Provides implementation of Gaussian elimination with partial pivoting |
 | GearsBDFOptions | Options for a former ODE solver. |
 | Matrix | Matrix class. |
 | Ode |
Realization of some numerical methods for ODE solving.
|
 | OdeAdamsMoulton |
Solves an initial-value problem for nonstiff ordinary differential equations using
the Adams-Moulton method.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
 | OdeGearsBDF |
Solves an initial-value problem for stiff ordinary differential equations using
the Gear’s BDF method.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
Obsolete |
 | OdeHelpers |
Contains helper extension methods for working with ODE solutions.
|
 | OdeImplicitRungeKutta5 |
Solves an initial-value problem for stiff ordinary differential equations using
the implicit Runge-Kutta method of order 5.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
 | Odouble |
Represents a double-precision floating-point number.
|
 | Oint |
Represents a 32-bit signed integer.
|
 | Options | ODE solver options |
 | SparseMatrix | Sparse matrix class |
 | xBaseOdeRungeKutta |
Represents a base class for the Runge-Kutta classes.
|
 | xOdeBase |
Represents the base class for the Odes.
|
Structures| | Structure | Description |
|---|
 | SolutionPoint | Structure to represent solution point. Current point has form (t,x1,x2,...,xn), where
n is problem's dimension |
 | SparseVector |
Represents a sparse vector of double-precision values.
|
 | Vector | Vector implementation. This is thin wrapper over 1D array |
Delegates| | Delegate | Description |
|---|
 | OdeFunction |
Delegate defining the Ordinary Differential Equations (ODEs) dy(i)/dt = f(i) = f(i,t,y(1),y(2),...,y(N)).
|
 | OdeJacobian |
Delegate that compute the Jacobian matrix df/dy (size NxN), as a function of the scalar t and the vector y.
|
 | OdeSolution |
Delegate used for solution output.
|
Enumerations| | Enumeration | Description |
|---|
 | ErrorToleranceEnum |
Specifies the type of the relative error and absolute error tolerances.
|