Java atanh atanh(double z)

Here you can find the source of atanh(double z)

Description

atanh

License

Open Source License

Declaration

public static double atanh(double z) 

Method Source Code

//package com.java2s;

public class Main {
    /** *//*from  ww w.  ja v a 2 s . c om*/
    public static double atanh(double z) {
        return (StrictMath.log((1.0 + z) * StrictMath.sqrt(1.0 / (1.0 - z * z))));
    }
}

Related

  1. atanh(double a)
  2. atanh(double x)