Class LogarithmicFunctionFeatures

  • All Implemented Interfaces:
    java.io.Serializable

    public class LogarithmicFunctionFeatures
    extends java.lang.Object
    implements java.io.Serializable
    Logarithmic functions
    See Also:
    Serialized Form
    • Field Detail

      • TYPE_NAME

        public static final Name TYPE_NAME
      • FIELD_NAME_E

        public static final Name FIELD_NAME_E
      • FIELD_NAME_EXP

        public static final Name FIELD_NAME_EXP
      • FIELD_NAME_LOG

        public static final Name FIELD_NAME_LOG
      • FIELD_NAME_LOG10

        public static final Name FIELD_NAME_LOG10
      • FIELD_NAME_SQRT

        public static final Name FIELD_NAME_SQRT
      • e

        public final java.lang.Boolean e
        The e() function. Returns the base of the natural logarithm, e.
      • exp

        public final java.lang.Boolean exp
        The exp() function. Returns e^n, where e is the base of the natural logarithm, and n is the value of the argument expression.
      • log

        public final java.lang.Boolean log
        The log() function. Returns the natural logarithm of a FLOAT.
      • log10

        public final java.lang.Boolean log10
        The log10() function. Returns the common logarithm (base 10) of a FLOAT.
      • sqrt

        public final java.lang.Boolean sqrt
        The sqrt() function. Returns the square root of a FLOAT.
    • Constructor Detail

      • LogarithmicFunctionFeatures

        public LogarithmicFunctionFeatures​(java.lang.Boolean e,
                                           java.lang.Boolean exp,
                                           java.lang.Boolean log,
                                           java.lang.Boolean log10,
                                           java.lang.Boolean sqrt)