Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExampleAtanh (0.14 sec)

  1. src/math/example_test.go

    	// Output: 0.00
    }
    
    func ExampleAtan() {
    	fmt.Printf("%.2f", math.Atan(0))
    	// Output: 0.00
    }
    
    func ExampleAtan2() {
    	fmt.Printf("%.2f", math.Atan2(0, 0))
    	// Output: 0.00
    }
    
    func ExampleAtanh() {
    	fmt.Printf("%.2f", math.Atanh(0))
    	// Output: 0.00
    }
    
    func ExampleCopysign() {
    	fmt.Printf("%.2f", math.Copysign(3.2, -1))
    	// Output: -3.20
    }
    
    func ExampleCos() {
    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