Interface InterfaceMatrix

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double get​(int column, int line)  
      int getCompNo()  
      double[] getValues​(int column, int line)  
      void init​(int columns, int lines)  
      void set​(int column, int line, double values)  
      void set​(int column, int line, double... values)  
      void setCompNo​(int no)  
    • Method Detail

      • init

        void init​(int columns,
                  int lines)
      • setCompNo

        void setCompNo​(int no)
      • getCompNo

        int getCompNo()
      • set

        void set​(int column,
                 int line,
                 double values)
      • set

        void set​(int column,
                 int line,
                 double... values)
      • get

        double get​(int column,
                   int line)
      • getValues

        double[] getValues​(int column,
                           int line)