Integration of a mathematical expression

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • aalam
    New Member
    • Jun 2007
    • 4

    Integration of a mathematical expression

    Is there any function available in C/C++ libarary to integrate a mathematical expression.

    Thanks in advance....
  • Meetee
    Recognized Expert Contributor
    • Dec 2006
    • 928

    #2
    Originally posted by aalam
    Is there any function available in C/C++ libarary to integrate a mathematical expression.

    Thanks in advance....
    math.hpp
    .

    Comment

    • rajarora
      New Member
      • Sep 2007
      • 33

      #3
      Originally posted by zodilla58
      math.hpp
      .
      I think there is no function of this type. You can do that by using the development of function according to the mathematical expression/formula for intergration.

      Regards,
      Raj Kumar Arora

      Comment

      • Meetee
        Recognized Expert Contributor
        • Dec 2006
        • 928

        #4
        Originally posted by rajarora
        I think there is no function of this type. You can do that by using the development of function according to the mathematical expression/formula for intergration.

        Regards,
        Raj Kumar Arora
        !!!!!!!

        Please refer this math.hpp

        Comment

        • chroot
          New Member
          • Nov 2007
          • 13

          #5
          Integrating a mathematical function is much too specific a function for the Standard Library.

          Are you looking for a function to integrate symbolically, e.g.

          2*x -> results of function: x^2

          or for a function to find the value of an integral on some domain numerically, e.g.

          Integral from 0 to 1 of x^3 -> result of function: 0.249967

          Those are fundamentally different methods for dealing with integrals.

          Regards

          Comment

          Working...