Skip to content

Releases: mitsuki31/jmatrix

v1.0.0-beta.2

21 Apr 18:03
c93d8f3
Compare
Choose a tag to compare

Warning ⚠️

This release is not a stable release. Bugs or any problems could be happen.

What's New 👀

🐛 Bug Fixes

v1.0.0-beta.1

21 Apr 01:38
be092ff
Compare
Choose a tag to compare

Warning ⚠️

This release is not a stable release. Bugs or any problems could be happen.

What's New 👀

🚀 Features

🐛 Bug Fixes

📄 Documentations

⛔ Removed

v0.2.0

25 Mar 11:03
f85ef2f
Compare
Choose a tag to compare

CHANGELOGS:

Operations function(s):

  • Now sum & sub operation no longer return an Integer array instead return void (back to Matrix itself).
  • Adding mult function to multiply Matrix with other Matrix.
    Adding transpose function to transpose the Matrix.

Other function(s):

  • Add boolean isSquare to check if Matrix is square.
  • Adding new Matrix constructor with no parameter, would create a null Matrix.
  • Adding create function to create new Matrix.
  • Adding copy function to copy the Matrix.
  • Adding select function to select index row of Matrix.
  • Adding change function to change values from selected index of Matrix row.
  • Adding new display function with a parameter (int) to print out a row of Matrix with index from the parameter.
  • Now clear and sort function would throw an NullMatrixException.

Files

  • Adding Makefile to compile and create jar file.
  • Create MANIFEST.MF for jar manifest file.
  • Move ExampleMatrix.java from examples directory to lib/matrix.

v0.1.0

22 Mar 08:51
b212fc5
Compare
Choose a tag to compare

Adding sum() function for add of two matrices
Adding sub() function for subtract of two matrices
Add new sort() and display() function with a parameter (int[ ][ ]).
Fix a bug when matrix full already and call clear() function, and then add a new column it'll throw MatrixArrayFullException. Now has been fixed.