Class BuiltinTrigonometricFunctions

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Double cosh​(java.lang.Double o)
      COSH(X)
      java.lang.Double sinh​(java.lang.Double o)
      SINH(X)
      java.lang.Double tanh​(java.lang.Double o)
      TANH(X)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BuiltinTrigonometricFunctions

        public BuiltinTrigonometricFunctions()
    • Method Detail

      • cosh

        public java.lang.Double cosh​(java.lang.Double o)
        COSH(X)

        Computes the hyperbolic cosine of X. Generates an error if an overflow occurs.

      • sinh

        public java.lang.Double sinh​(java.lang.Double o)
        SINH(X)

        Computes the hyperbolic sine of X. Generates an error if an overflow occurs.

      • tanh

        public java.lang.Double tanh​(java.lang.Double o)
        TANH(X)

        Computes hyperbolic tangent of X. Does not fail.