Interface ShortMatrix

    • Method Detail

      • getShort

        short getShort​(long... coordinates)
        Returns a short representation of an entry in the matrix. The stored value will be converted to a short as good as possible.
        Parameters:
        coordinates - location of the entry
        Returns:
        a short representation of the entry @
      • setShort

        void setShort​(short value,
                      long... coordinates)
        Sets an entry in the matrix to a short value. If the matrix cannot store short values, the value will be represented as good as possible.
        Parameters:
        value - short value
        coordinates - location of the entry @