Package no.uib.cipr.matrix
Interface MatrixEntry
public interface MatrixEntry
An entry of a matrix. Returned by the iterators over a matrix structure
-
Method Summary
-
Method Details
-
row
int row()Returns the current row index -
column
int column()Returns the current column index -
get
double get()Returns the value at the current index -
set
void set(double value) Sets the value at the current index
-