Overload List

  NameDescription
Solve(Func<(Of <(Double, DoubleVector, DoubleVector>)>), DoubleVector, DoubleVector)
Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y)
Solve(Func<(Of <(Double, Double, Double>)>), DoubleVector, Double)
Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y) using default solver options.
Solve(Func<(Of <(Double, DoubleVector, DoubleVector>)>), DoubleVector, DoubleVector, RungeKutta45OdeSolver..::.Options)
Solves initial value problem of ordinary differential equations. This function solves of equations of the form y' = f(t,y). If the equations involve a mass matrix, either constant of time and state dependent, it must be specified using the solverOptions parameter. The mass matrix must be nonsigular.
Solve(Func<(Of <(Double, Double, Double>)>), DoubleVector, Double, RungeKutta45OdeSolver..::.Options)
Solves the given initial value problem of ordinary differential equation of the form y' = f(t,y) or y' = M(t,y)*f(t,y) for problems that involve a mass matrix M.

See Also