Skip to content

Releases: kneth/commons-math

v0.3.0

Choose a tag to compare

@kneth kneth released this 18 Mar 21:17
  • Adds a simple Fraction class to represent fractions.
  • Adds Complex.toString().

v0.2.0

Choose a tag to compare

@kneth kneth released this 15 Nov 20:12
  • Adds a simple Matrix class.
  • Adds a simple Vector class.

v0.1.0

Choose a tag to compare

@kneth kneth released this 11 Nov 18:26
  • Complex' constructor now has imaginary part set to 0 as default.
  • Adds Complex.sqrt() to compute the square root of a complex number.
  • Adds Complex.mod() to compute modulus of a complex number.
  • Adds Complex.polar() to translate to polar coordinates.

0.0.1

Choose a tag to compare

@kneth kneth released this 08 Nov 19:54

Initial release with a minimal feature set.

  • Added basic infrastructure for building and testing.
  • Added the class Complex to represent complex numbers. The class includes methods for addition (add()), subtraction (sub()), multiplication (mul()), and division (div()).