Releases: mitsuki31/jmatrix
Releases · mitsuki31/jmatrix
v1.0.0-beta.2
Warning ⚠️
This release is not a stable release. Bugs or any problems could be happen.
What's New 👀
🐛 Bug Fixes
- Fixes implicit conversion issue (#12) - @mitsuki31
- Fixes wrong RegEx in
JMBaseException.java
(#10) - @mitsuki31
v1.0.0-beta.1
Warning ⚠️
This release is not a stable release. Bugs or any problems could be happen.
What's New 👀
🚀 Features
- More improvements for
jmatrix
🍦 (#9) - @mitsuki31 - Add new features to
Matrix
📦 (#7) - @mitsuki31 - Huge improvements for
jmatrix
🎉 (#3) - @mitsuki31
🐛 Bug Fixes
- Small fixes to
fix_version.py
(#8) - @mitsuki31 - Huge improvements for
jmatrix
🎉 (#3) - @mitsuki31
📄 Documentations
- Update documentations 📄 (#5) - @mitsuki31
- Added javadoc to all methods in
Matrix.java
📄 (#4) - @mitsuki31 - Huge improvements for
jmatrix
🎉 (#3) - @mitsuki31
⛔ Removed
- Huge improvements for
jmatrix
🎉 (#3) - @mitsuki31
v0.2.0
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.
Addingtranspose
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
andsort
function would throw anNullMatrixException
.
Files
- Adding Makefile to compile and create jar file.
- Create
MANIFEST.MF
for jar manifest file. - Move
ExampleMatrix.java
fromexamples
directory tolib/matrix
.
v0.1.0
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.