Compute Hyperbolic Tangent
Examples in
Go
package main
import (
"fmt"
"math"
)
func main() {
fmt.Printf("%.2f", math.Tanh(0))
}
Last Run
:
0.00