Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find math intense apps in Ruby

I have found many rails apps mainly on the enterprise, social networking kind of web apps. I see that Ruby is compared with some of the great OOPS languages like Java & C# but I am really finding it hard to get some Math Intense apps. Any knowledgeble input (links to sample programs etc.), where the usage of the language is shown with ease and is like jumpstart or show how the language can be used for variety of math probs, is greatly appreciated.

like image 623
uday Avatar asked Feb 03 '12 20:02

uday


1 Answers

Unfortunately, Ruby hasn't ventured very far into mathematical and scientific computing. Currently, there is a pre-alpha library called SciRuby that is attempting to bring more math oriented capabilities to Ruby. They are trying to build a NumPy/SciPy equivalent. A few projects that are under SciRuby with example usage are:

  • NMatrix
  • Rubyvis
  • Statsample

Each project has various examples on how to get started/contribute. A good place to start is their docs and their mailing list.

Hope that helps.

like image 146
psylinse Avatar answered Oct 04 '22 15:10

psylinse