HalleySolver.TargetFunctionWithDerivatives 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: 9.0.4
C#
public Func<double, (double , double , double )> TargetFunctionWithDerivatives { get; set; }

Property Value

Func<Double, ValueTuple<Double, Double, Double>>
A delegate that represents a function of one variable delegate.

See Also