Function cos

  • Computes the cosine of x

    Example

    Interval.cos(
    Interval(0, 0)
    ) // Interval(1, 1)

    Example

    Interval.cos(
    Interval(0, Math.PI / 2)
    ) // Interval(0, 1)

    Example

    Interval.cos(
    Interval(3 * Math.PI / 2, 3 * Math.PI)
    ) // Interval(-1, 1)

    Example

    Interval.cos(
    Interval(-Infinity, x)
    )
    // Interval(-1, 1) if x > -Infinity
    // Interval.EMPTY otherwise

    Example

    Interval.cos(
    Interval(x, Infinity)
    )
    // Interval(-1, 1) if x < Infinity
    // Interval.EMPTY otherwise

    Returns

    Parameters

    Returns Interval

Generated using TypeDoc