Function interpolate

  • Estimate new values between existing ones.

    Type Parameters

    • T

    Parameters

    • x: Iterable<T>

      an iterable

    • fc: CombineFunction<T>

      combine function (a, b)

    Returns IterableIterator<T>

    x[0], fc(x[0], x[1]), x[1], fc(x[1], x[2]), ..., x[|x|-1]

Generated using TypeDoc