Curve<T>.Solve Method

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

Definition

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

Parameters

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

Return Value

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

See Also