-
Exceptions Exceptions Description com.mitsuki.jmatrix.exception.MatrixArrayFullException This exception is deprecated because it contradicts the principles of linear algebra. It is recommended to review the code and find alternative approaches that align with the dynamic nature of matrices in linear algebra.
-
Methods Method Description com.mitsuki.jmatrix.Matrix.add(double...) Highly inefficient method to create a matrix array. It is very recommended to useMatrix(double[][])
orMatrix.create(double[][])
instead.com.mitsuki.jmatrix.Matrix.change(double...) Due to having an inefficient way to change entries in a specific row of the matrix. Please transition to using theinsertRow
method for improved performance and functionality. If want to update and change specific column of the matrix, you can utilize theinsertColumn
method.com.mitsuki.jmatrix.Matrix.copy() This method is deprecated and may result in unexpected behavior. UseMatrix.deepCopy()
for performing a deep copy of the matrix instead.com.mitsuki.jmatrix.Matrix.select(int) As of the deprecation ofMatrix.change(double...)
methods, this method is no longer in use and no longer recommended.