Interface DoubleMatrixMultiD

    • Method Detail

      • getDouble

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

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