1

I'm looking (have looked on Google, no luck) for a Java library that can produce graphs of mathematical functions and equations. It would be great if I could us it as a JComponent for adding to frames, but I can do without. If there aren't any good ones I'll probably make one anyway.

Thanks in advance

Luke Moll
  • 428
  • 6
  • 18

1 Answers1

3

Did you check jfreechart?

http://www.jfree.org/jfreechart/samples.html

As jfreechart uses data series you will have to sample your matchematical functions.

przemek hertel
  • 3,924
  • 1
  • 19
  • 27
  • Thanks, I did come across it, i didn't realise it had a data series mode. That'll greatly reduce the code i have to write. – Luke Moll Sep 29 '14 at 18:01