Chalkboard - v3.0.4
    Preparing search index...

    Function lim

    • Calculates the limit of a function as it approaches a value.

      Parameters

      Returns number | undefined

      const sinc = Chalkboard.real.define((x) => x === 0 ? 1 : Math.sin(x) / x);
      const limit = Chalkboard.calc.lim(sinc, 0); // Returns approximately 1