• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Integration

 
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there some type of command to help do Integration problems? I managed to just make a method for integrating a linear function, but I also need to know how to solve like X^x and then (1/1+x^5). I'm just asking if there is a method or something because I actually used MatLab and that application does it for you.
 
Bartender
Posts: 2700
IntelliJ IDE Opera
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There aren't some standard methods for integration in Java although you could build some yourself. However Matlab (and some graphic calculators) have functions especially for these problems. I would stick with Matlab.
 
Bartender
Posts: 10780
71
Hibernate Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Wouter Oet wrote:There aren't some standard methods for integration in Java although you could build some yourself. However Matlab (and some graphic calculators) have functions especially for these problems. I would stick with Matlab.


@Tarrell: Alternatively, a Google of "java integral calculus" returned me a pile of hits, so you might want to try it yourself. I can't speak for any of the products listed though.

Winston
 
Tarrell Fletcher
Ranch Hand
Posts: 60
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
See once again I figured it out after realizing that it was asking for the recursive way to do it. Like the whole delta x divided by the number of rectangles using for the approximation. I thought it was asking me to find the antiderivative and then go about it. I haven't did that old method since Cal1 so I forgot all about it. But thanks for the tip because I would not have realized that.
 
I'd appreciate it if you pronounced my name correctly. Pinhead, with a silent "H". Petite ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic