v0.2.0
mitsuki31
released this
25 Mar 11:03
·
611 commits
to master
since this release
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
.