Static member | Description |
Full Usage:
OdeHelpers.SolveFromTo(solution, from, to)
Parameters:
IEnumerable<SolutionPoint>
-
Solution
from : float
-
Start time
to : float
-
Finish time
Returns: IEnumerable<SolutionPoint>
New sequence of solution points
|
Extracts points with time between from and to points.
|
Full Usage:
OdeHelpers.SolveFromToStep(solution, from, to, step)
Parameters:
IEnumerable<SolutionPoint>
-
Solution
from : float
-
Start time
to : float
-
Finish time
step : float
-
Time step
Returns: IEnumerable<SolutionPoint>
New sequence of solution points at i * step
|
Extracts points with time between from and to points and interpolates points with specified time step.
|
Full Usage:
OdeHelpers.SolveTo(solution, to)
Parameters:
IEnumerable<SolutionPoint>
-
Solution
to : float
-
Finish time
Returns: IEnumerable<SolutionPoint>
New sequence of solution points
|
Extracts points with time less than or equal to to
|