xOdeBaseCheckArguments Method |
Checks the validity of the initial and final time and time step arguments.
Namespace: Altaxo.Calc.Ode.ObsoleteAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxprotected void CheckArguments(
double t0,
double deltaT,
double tf
)
Parameters
- t0 Double
- The initial time.
- deltaT Double
- The time step.
- tf Double
- The final time.
Remarks
This method ensures that the final time is not equal to the initial time,
and that the time step is not zero. It also checks that the relationship
between the initial time, final time, and time step is consistent (i.e., if
the final time is less than the initial time, the time step must be negative,
and vice versa).
See Also