Interface MatrixEntry


public interface MatrixEntry
An entry of a matrix. Returned by the iterators over a matrix structure
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the current column index
    double
    get()
    Returns the value at the current index
    int
    row()
    Returns the current row index
    void
    set(double value)
    Sets the value at the current index
  • 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