Interface RoundingDoubleCalculations

    • Method Detail

      • round

        Matrix round​(Calculation.Ret returnType)
        Returns a matrix with all entries rounded to integer values.
        Parameters:
        returnType - Select whether a new or a linked Matrix is returned, or if the operation is performed on the original Matrix
        Returns:
        Matrix with rounded values
      • floor

        Matrix floor​(Calculation.Ret returnType)
        Returns a matrix with all entries rounded down to the next integer. The result is a new Matrix.
        Parameters:
        returnType - Select whether a new or a linked Matrix is returned, or if the operation is performed on the original Matrix
        Returns:
        Matrix with rounded values
      • ceil

        Matrix ceil​(Calculation.Ret returnType)
        Returns a matrix with all entries rounded up to the next integer. The result is a new Matrix.
        Parameters:
        returnType - Select whether a new or a linked Matrix is returned, or if the operation is performed on the original Matrix
        Returns:
        Matrix with rounded values