Interface FloatMatrix

    • Method Detail

      • getFloat

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

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