public interface MatrixBuilder
Matrix object.| Modifier and Type | Method and Description |
|---|---|
Matrix |
build()
Create a new matrix using the data in this builder.
|
MatrixBuilder |
set(int i,
int j,
double value)
Set the matrix at the given coordinates to the provided value and return the builder.
|
MatrixBuilder |
setColumn(int j,
Vector column) |
MatrixBuilder |
setRow(int i,
Vector row) |
MatrixBuilder set(int i, int j, double value)
i - the row to set the value at.j - the column to set the value at.value - the value to set.MatrixBuilder setRow(int i, Vector row)
MatrixBuilder setColumn(int j, Vector column)
Matrix build()