Acosh in Go

Posted by GoDoc
Public (Editable by Users)

Acosh returns the inverse hyperbolic cosine of x.

Go
Edit
package main

import (
	"fmt"
	"math"
)

func main() {
	fmt.Printf("%.2f", math.Acosh(1))
}