Here, We will learn how to get hyperbolic cosine of number in go. We can get it by using Cosh() function in math package in go golang.
Function prototype:
func Cosh(num float64) float64
Return value:
Cosh() function in math package returns
the hyperbolic cosine of number.
Example with code:
package main
import (
"fmt"
"math"
)
func main() {
no := math.Cosh(1)
fmt.Printf("%.2f\n", no)
no = math.Cosh(0)
fmt.Printf("%.2f\n", no)
no = math.Cosh(0.25)
fmt.Printf("%.2f\n", no)
no = math.Cosh(0.75)
fmt.Printf("%.2f\n", no)
}
Output:
1.54
1.00
1.03
1.29
To learn more about golang, Please refer given below link:
https://www.techieindoor.com/go-lang-tutorial/
References:
https://golang.org/doc/
https://golang.org/pkg/