当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Math.tanh()用法及代码示例


java.lang.Math.tanh() 用于返回值的双曲正切值。任何值 x 的双曲正切都可以定义为 ((ex-e-x)/2)/((ex+ e-x)/2),其中 e 是欧拉数。我们可以说tanh(a) = sinh(a)/cosh(a)。

用法

public static double tanh(double x)

参数

x = the number whose hyperbolic tangent is to be returned.

返回

It returns the hyperbolic tangent of x.
  • 如果参数为正数或负数,此方法将返回双曲正切值。
  • 如果参数为零,则此方法将返回与参数相同符号的零。
  • 如果参数为 NaN,则此方法将返回 NaN。
  • 如果参数是 Positive Infinity,则此方法将返回 +1.0。
  • 如果参数为 Negative Infinity,则此方法将返回 -1.0。

例子1

public class TanhExample1
{
    public static void main(String[] args) 
    {
        double a = 12.0;
        System.out.println(Math.tanh(a));
    }
}

输出:

0.9999999999244973

例子2

public class TanhExample2
{
    public static void main(String[] args) 
    {
        double a = 60.0;
        System.out.println(Math.tanh(a));
    }
}

输出:

1.0

例子3

public class TanhExample3
{
    public static void main(String[] args) 
    {
        double a = -0.0;
        // Input negative zero, Output negative zero 
        System.out.println(Math.tanh(a));
    }
}

输出:

-0.0

示例 4

public class TanhExample4
{
    public static void main(String[] args) 
    {
        double a = 0.0/0;
        // Input NaN, Output NaN
        System.out.println(Math.tanh(a));
    }
}

输出:

NaN

例 5

public class TanhExample5
{
    public static void main(String[] args) 
    {
        double a = -1.0/0;
        // Input negative infinity, Output negative 1
        System.out.println(Math.tanh(a));
    }
}

输出:

-1.0






相关用法


注:本文由纯净天空筛选整理自 Java Math.tanh() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。