Interface MatrixEntry


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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int column()
      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 Detail

      • 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