Asinh in Go

Posted by GoDoc
Public (Editable by Users)

Asinh returns the inverse hyperbolic sine of x.

Go
Edit
package main

import (
	"fmt"
	"math"
)

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