Atanh in Go

Posted by GoDoc
Public (Editable by Users)

Atanh returns the inverse hyperbolic tangent of x.

Go
Edit
package main

import (
	"fmt"
	"math"
)

func main() {
	fmt.Printf("%.2f", math.Atanh(0))
}