Packages, die Matrix verwenden
-
Adds the given matrix to the current
Matrix
.
Appends the given matrix at the right of the current
Matrix
.
Appends a new row with the given row values on the bottom of the current
Matrix
.
The values of the created
Matrix
will be all 1.0
The values of the created
Matrix
will be all 1.0
The values of the created
Matrix
will be all a whole random number in
[0, 99].
The values of the created
Matrix
will be all a whole random number in
[0, 99].
This method implements the least squares algorithm.
Multiplies the current
Matrix
with the given factor.
Multiplies the row with the given row index with the given factor.
Removes the zero rows of the current
Matrix
using an epsilon
Sets the values of the current
Matrix
to the given value.
Sets the diagonal values of the current
Matrix
to the given value.
Matrix.setValue(int rowIndex,
int columnIndex,
double value)
Sets the value in the row with the given row index and the column with the
given column index.
Sets the values of the current
Matrix
.
Matrix.setValues(double value,
double... values)
Sets the values of the current
Matrix
.
Matrix.swapRows(int row1Index,
int row2Index)
Swaps the rows with the given indexes.
Transforms the first part of the current
Matrix
to an identity
matrix.
Transforms the current
Matrix
to an equivalent upper left matrix.
Transposes the current
Matrix
.
Adds the given matrix to the current
Matrix
.
Appends the given matrix at the right of the current
Matrix
.
boolean
This method implements the least squares algorithm.
boolean