Here you can find the source of tanh(Double x)
Parameter | Description |
---|---|
x | the x |
public static double tanh(Double x)
//package com.java2s; public class Main { /**//from w w w . j a v a 2 s .co m * Tanh. * * @param x the x * @return the double */ public static double tanh(Double x) { return Math.tanh(x); } }