Finds the x value where the curve reaches the specified y value.
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual double Solve(
double y,
double x0
)
Public Overridable Function Solve (
y As Double,
x0 As Double
) As Double
public:
virtual double Solve(
double y,
double x0
)
abstract Solve :
y : float *
x0 : float -> float
override Solve :
y : float *
x0 : float -> float
Parameters
- y
- Type: SystemDouble
The y-value. - x0
- Type: SystemDouble
An initial estimate of the x value.
Return Value
Type:
Double
The value of x where the curve has the value
y.
Reference