Package samer.maths

Interface Mat

  • All Known Implementing Classes:
    Matrix, RowColumn, Vec.ForArray


    public interface Mat
    This is an interface for an element-wise addressable matrix. Not generally used for computation, but for user interface purposes.
    • Method Detail

      • width

        int width()
      • height

        int height()
      • get

        double get(int i,
                   int j)
      • set

        void set(int i,
                 int j,
                 double t)