Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleSinh (0.09 sec)

  1. src/math/example_test.go

    func ExampleSin() {
    	fmt.Printf("%.2f", math.Sin(math.Pi))
    	// Output: 0.00
    }
    
    func ExampleSincos() {
    	sin, cos := math.Sincos(0)
    	fmt.Printf("%.2f, %.2f", sin, cos)
    	// Output: 0.00, 1.00
    }
    
    func ExampleSinh() {
    	fmt.Printf("%.2f", math.Sinh(0))
    	// Output: 0.00
    }
    
    func ExampleTan() {
    	fmt.Printf("%.2f", math.Tan(0))
    	// Output: 0.00
    }
    
    func ExampleTanh() {
    	fmt.Printf("%.2f", math.Tanh(0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 07 18:09:53 UTC 2021
    - 3.7K bytes
    - Viewed (0)
Back to top