StableDistributionBaseFindIncreasingYEqualToOne Method |
Finds the x where func(x)==1±-1E-5 between x0 < x < x1 for a monoton increasing function func.
Namespace: Altaxo.Calc.ProbabilityAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax protected static double FindIncreasingYEqualToOne(
Func<double, double> func,
double x0,
double x1
)
Parameters
- func FuncDouble, Double
- Function for which to find the argument x where func(x)=1. The function has to be increasing with x.
- x0 Double
- Lower bound of the search range.
- x1 Double
- Upper bound of the search range.
Return Value
DoubleThe value x at which func(x)=1±-1E-5.
See Also