Returns an
EquationSolver suitable for solving an equation using the specified information.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static EquationSolver GetEquationSolver(
Expression<Func<double, double>> targetFunction,
double initialGuess
)
Public Shared Function GetEquationSolver (
targetFunction As Expression(Of Func(Of Double, Double)),
initialGuess As Double
) As EquationSolver
public:
static EquationSolver^ GetEquationSolver(
Expression<Func<double, double>^>^ targetFunction,
double initialGuess
)
static member GetEquationSolver :
targetFunction : Expression<Func<float, float>> *
initialGuess : float -> EquationSolver
Parameters
- targetFunction
- Type: System.Linq.ExpressionsExpressionFuncDouble, Double
A lambda expression that represents a function of one variable that specifies the function on the left-hand
side of the equation. - initialGuess
- Type: SystemDouble
An initial guess for ther zero.
Return Value
Type:
EquationSolverAn
EquationSolver object that is set up to solve an equation for the specifed target function.
Use this method when you have very little information about the location of the zero, but you need more control
over the solution process. For example, you may want to specify a different RelativeTolerance.
Reference