FunctionMath.GetEquationSolver Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.0.0

Overload List

GetEquationSolver(Func<Double, Double>, Double) Returns an EquationSolver suitable for solving an equation using the specified information.
GetEquationSolver(Func<Vector<Double>, Double>[], Func<Vector<Double>, Vector<Double>, Vector<Double>>[], Vector<Double>) Finds a zero of a function starting from an initial guess.
GetEquationSolver(Func<Double, Double>, Double, Double) Finds a zero of a function when the solution is known to lie within a specified interval.
GetEquationSolver(Func<Double, Double>, Func<Double, Double>, Double) Finds a zero of a function starting from an initial guess.
GetEquationSolver(Func<Vector<Double>, Vector<Double>, Vector<Double>>, Func<Vector<Double>, Matrix<Double>, Matrix<Double>>, Vector<Double>) Finds a zero of a function starting from an initial guess.

GetEquationSolver(Func<Double, Double>, Double)

Returns an EquationSolver suitable for solving an equation using the specified information.
C#
public static EquationSolver GetEquationSolver(
	this Func<double, double> function,
	double initialGuess
)

Parameters

function  Func<Double, Double>
A function of one variable that specifies the function on the left-hand side of the equation.
initialGuess  Double
An initial guess for ther zero.

Return Value

EquationSolver
An EquationSolver object that is set up to solve an equation for the specifed target function.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func<Double, Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

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.

GetEquationSolver(Func<Vector<Double>, Double>[], Func<Vector<Double>, Vector<Double>, Vector<Double>>[], Vector<Double>)

Finds a zero of a function starting from an initial guess.
C#
public static EquationSystemSolver GetEquationSolver(
	this Func<Vector<double>, double>[] functions,
	Func<Vector<double>, Vector<double>?, Vector<double>>[] gradients,
	Vector<double> initialGuess
)

Parameters

functions  Func<Vector<Double>, Double>[]
A multivariate function returning a vector that specifies the function on the left-hand side of the equation.
gradients  Func<Vector<Double>, Vector<Double>, Vector<Double>>[]
A multivariate function that specifies the gradient function of functions.
initialGuess  Vector<Double>
An initial guess for ther zero.

Return Value

EquationSystemSolver
The best approximation to a zero of functions.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func<Vector<Double>, Double>[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

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.

GetEquationSolver(Func<Double, Double>, Double, Double)

Finds a zero of a function when the solution is known to lie within a specified interval.
C#
public static EquationSolver GetEquationSolver(
	this Func<double, double> function,
	double lowerBound,
	double upperBound
)

Parameters

function  Func<Double, Double>
A function of one variable that specifies the function on the left-hand side of the equation.
lowerBound  Double
The lower bound of the interval that contains the root.
upperBound  Double
The upper bound of the interval that contains the root.

Return Value

EquationSolver
The best approximation to a zero of function, but you need more control over the solution process. For example, you may want to specify a different RelativeTolerance.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func<Double, Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

GetEquationSolver(Func<Double, Double>, Func<Double, Double>, Double)

Finds a zero of a function starting from an initial guess.
C#
public static EquationSolver GetEquationSolver(
	this Func<double, double> function,
	Func<double, double> derivativeOfTargetFunction,
	double initialGuess
)

Parameters

function  Func<Double, Double>
A function of one variable that specifies the function on the left-hand side of the equation.
derivativeOfTargetFunction  Func<Double, Double>
A function of one variable that specifies the derivative function of function.
initialGuess  Double
An initial guess for ther zero.

Return Value

EquationSolver
The best approximation to a zero of function.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func<Double, Double>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Remarks

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.

GetEquationSolver(Func<Vector<Double>, Vector<Double>, Vector<Double>>, Func<Vector<Double>, Matrix<Double>, Matrix<Double>>, Vector<Double>)

Finds a zero of a function starting from an initial guess.
C#
public static EquationSystemSolver GetEquationSolver(
	this Func<Vector<double>, Vector<double>?, Vector<double>> function,
	Func<Vector<double>, Matrix<double>?, Matrix<double>> jacobianFunction,
	Vector<double> initialGuess
)

Parameters

function  Func<Vector<Double>, Vector<Double>, Vector<Double>>
A multivariate function returning a vector that computes the values on the left-hand side of the equations.
jacobianFunction  Func<Vector<Double>, Matrix<Double>, Matrix<Double>>
A multivariate function returning a matrix in its second argument that computes the Jacobian of function.
initialGuess  Vector<Double>
An initial guess for the solution.

Return Value

EquationSystemSolver
The best approximation to a zero of function.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func<Vector<Double>, Vector<Double>, Vector<Double>>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also