Click or drag to resize

AbstractRootFinderSolve(Double, Double, Double, Boolean) Method

Prototype algorithm for solving the equation f(x)==y.

Namespace: Altaxo.Calc.RootFinding
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual double Solve(
	double x1,
	double x2,
	double y,
	bool bracket
)

Parameters

x1  Double
The lower value of the range where the root is supposed to be.
x2  Double
The higher value of the range where the root is supposed to be.
y  Double
The function value to find the function's argument for.
bracket  Boolean
Determines whether a bracketing operation is required.

Return Value

Double
Returns the root with the specified accuracy.
See Also