Curve.Solve Method

Finds the x value where the curve reaches the specified y value.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual double Solve(
	double y,
	double x0
)

Parameters

y  Double
The y-value.
x0  Double
An initial estimate of the x value.

Return Value

Double
The value of x where the curve has the value y.

See Also