Ruby mathematic gem

后端 未结 5 1690
庸人自扰
庸人自扰 2021-02-05 21:03

does anybody know if there is a good gem for mathematic / geometric operations? I need some of this things:

  • Dot product
  • Cross product
  • Angle betwe
相关标签:
5条回答
  • 2021-02-05 21:45

    I can highly recommend the Ruby/GSL gem.

    You may need to refer to the GSL manual to work out the name of the function you need to call though, if it's not documented in the Ruby/GSL documentation.

    0 讨论(0)
  • 2021-02-05 21:49

    http://linalg.rubyforge.org/ seems to do what you want. It is based on LAPACK, the standard ultra tested 40-year linear algebra framework. Moreover, you can plug in vendor-specific LAPACK libraries for optimized code.

    0 讨论(0)
  • 2021-02-05 21:55

    I am not sure if this may help: http://narray.rubyforge.org

    0 讨论(0)
  • 2021-02-05 21:59

    NMatrix from the SciRuby project might be what you're looking for.

    0 讨论(0)
  • 2021-02-05 22:02

    Linalg https://github.com/wedesoft , I posted instructions how to install it here: http://www.quora.com/Installation-Instructions/How-do-I-install-Ruby-linalg-library-on-Mac

    0 讨论(0)
提交回复
热议问题