Package jline.util.matrix
Class MatrixEntry
java.lang.Object
jline.util.matrix.MatrixEntry
A (row, column, value) triple returned by
BaseMatrix.nonZeroIterator().
Iterators reuse a single instance for all entries to avoid allocation;
callers must copy the fields if they need to retain an entry beyond the
next call to next().
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
row
public int rowRow index of the entry. -
col
public int colColumn index of the entry. -
value
public double valueValue of the entry.
-
-
Constructor Details
-
MatrixEntry
public MatrixEntry()
-