Chalkboard - v3.0.4
    Preparing search index...

    Function fxydxdy

    • Calculates the double integration of a multivariable function.

      Parameters

      • func: ChalkboardFunction

        The function

      • xinf: number

        The lower x-bound

      • xsup: number

        The upper x-bound

      • yinf: number

        The lower y-bound

      • ysup: number

        The upper y-bound

      Returns number

      const f = Chalkboard.real.define((x, y) => x + y);
      const integral = Chalkboard.calc.fxydxdy(f, 0, 1, 0, 1); // Returns approximately 1