Interface InterfaceMatrix


public interface InterfaceMatrix
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    get(int column, int line)
     
    int
     
    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 Details

    • 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)