Interface DoubleMathFunctions

  • All Known Implementing Classes:
    DimensionlessVector

    public interface DoubleMathFunctions
    DoubleMathFunctions provides a static implementation of Math functions.

    This file was generated by the djunits value classes generator, 26 jun, 2015

    Copyright (c) 2015-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
    BSD-style license. See DJUNITS License.

    Author:
    Alexander Verbraeck, Peter Knoppers
    • Method Detail

      • POW

        static DoubleFunction POW​(double b)
        Function that returns Math.pow(a, b).
        Parameters:
        b - double; power parameter
        Returns:
        power function
      • INC

        static DoubleFunction INC​(double b)
        Function that returns a + b.
        Parameters:
        b - double; increment
        Returns:
        power function
      • DEC

        static DoubleFunction DEC​(double b)
        Function that returns a - b.
        Parameters:
        b - double; decrement
        Returns:
        power function
      • MULT

        static DoubleFunction MULT​(double b)
        Function that returns a * b.
        Parameters:
        b - double; multiplier
        Returns:
        power function
      • DIV

        static DoubleFunction DIV​(double b)
        Function that returns a / b.
        Parameters:
        b - double; divisor
        Returns:
        power function