Interface NumberMatrixMultiD<T extends java.lang.Number>

    • Method Detail

      • getNumber

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

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