We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this questionthere is a matrix library for java available http://math.nist.gov/javanumerics/jama/ is there anything similar in groovy?
You can easily use Java libraries inside Groovy code, just import and use. In addition, with a low effort, you could write your own DSL to wrap the JaMa library (and release it of course :)
you could have a look at the GroovyLab or Groovy-Matrix projects covering classes for Groovy math engineering:
http://code.google.com/p/groovylab/
http://code.google.com/p/groovy-matrix/
both projects seem a bit outdated, but it should certainly be not a big problem to push them to the latest Groovy version.
精彩评论