public static MultiOdeResult IntegrateConservativeOde(
Func<double, IReadOnlyList<double>, IReadOnlyList<double>> rhs,
double x0,
IReadOnlyList<double> y0,
IReadOnlyList<double> yPrime0,
double x1,
MultiOdeSettings settings
)
Public Shared Function IntegrateConservativeOde (
rhs As Func(Of Double, IReadOnlyList(Of Double), IReadOnlyList(Of Double)),
x0 As Double,
y0 As IReadOnlyList(Of Double),
yPrime0 As IReadOnlyList(Of Double),
x1 As Double,
settings As MultiOdeSettings
) As MultiOdeResult
public:
static MultiOdeResult^ IntegrateConservativeOde(
Func<double, IReadOnlyList<double>^, IReadOnlyList<double>^>^ rhs,
double x0,
IReadOnlyList<double>^ y0,
IReadOnlyList<double>^ yPrime0,
double x1,
MultiOdeSettings^ settings
)
static member IntegrateConservativeOde :
rhs : Func<float, IReadOnlyList<float>, IReadOnlyList<float>> *
x0 : float *
y0 : IReadOnlyList<float> *
yPrime0 : IReadOnlyList<float> *
x1 : float *
settings : MultiOdeSettings -> MultiOdeResult
For information on conservative ODEs, see IntegrateConservativeOde(FuncDouble, Double, Double, Double, Double, Double, Double, OdeSettings).
ArgumentNullException | rhs, y0, yPrime0, or settings is . |
DimensionMismatchException | y0 and yPrime0 do not have the same dimension. |
NonconvergenceException | The ODE could not be integrated to the required precision before exhausting the maximum allowed number of rhsevaluations. |