Compute Inverse Hyperbolic Cosine
Examples in
Go
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("%.2f", math.Acosh(2))
}