Java sinh sinh(double paramDouble)

Here you can find the source of sinh(double paramDouble)

Description

sinh

License

Open Source License

Declaration

public static strictfp double sinh(double paramDouble)
    

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static strictfp double sinh(double paramDouble)
    /*     */{//www.ja v  a 2 s .co  m
        /* 304 */return (StrictMath.exp(paramDouble) - StrictMath
                .exp(-paramDouble)) * 0.5D;
        /*     */}
}

Related

  1. sinh(double t)
  2. sinh(double x)
  3. sinh(Double x)
  4. sinh(final double x)