Represents the result of an inverse function approximation. See inverseFunctionApprox and inverseFunctionApproxInt.

interface InverseFunctionApproxResult {
    lowerBound: Decimal;
    upperBound: Decimal;
    value: Decimal;
}

Properties

lowerBound: Decimal

The lower bound of the inverse function approximation.

upperBound: Decimal

The upper bound of the inverse function approximation

value: Decimal

The value of the inverse function approximation. Defaults to the lower bound (lowerBound).