Sinh in Go

Posted by GoDoc
Public (Editable by Users)

Sinh returns the hyperbolic sine of x.

Go
Edit
package main

import (
	"fmt"
	"math"
)

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