Skip to content

Releases: tweimer/java-matrix

Version 2.1 released

Choose a tag to compare

@tweimer tweimer released this 20 May 08:37

Main feature of this release are the transform(...) and transformEquals(...) methods, which add support for DoubleUnaryOperator and DoubleBinaryOperator, introduced for Java 8 (lambda expressions). Everything is documented on https://tweimer.github.io/java-matrix/. Also matchAny(...) and matchAll(...) has been added.

Java-Matrix 2.0 (2016-04-09)

Choose a tag to compare

@tweimer tweimer released this 13 Apr 07:51
  • Version 2.0 released
  • Implemented toString, hashCode and equals in Matrix
  • Removed Cloneable, replaced by constructor Matrix(Matrix)
  • arrayTimesEquals, arrayLeftDivideEquals, minusEquals, plusEquals,
    timesEquals are now void functions, to indicate that they work in-place
    and to make signature more obvious.
  • inverse() will now return null if no inverse can be computed, this is
    easier to check since you don't know that in advance and you can easily
    check for being null. It will trigger a NullPointerException anyway if
    you try to dereference it.