Newton Raphson Solver.Target Function With Derivative Property
Gets or sets a delegate that computes the target function for the
EquationSolver and its first and second derivatives
as a tuple.
Definition
Namespace: Numerics.NET.EquationSolvers
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
C#
A function of one variable delegate.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
public Func<double, (double , double )> TargetFunctionWithDerivative { get; set; }Property Value
Func<Double, ValueTuple<Double, Double>>A function of one variable delegate.