Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for BenchmarkAtan (0.19 sec)

  1. src/math/cmplx/cmath_test.go

    	for i := 0; i < b.N; i++ {
    		Asin(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAsinh(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Asinh(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAtan(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Atan(complex(2.5, 3.5))
    	}
    }
    func BenchmarkAtanh(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Atanh(complex(2.5, 3.5))
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  2. src/math/all_test.go

    		x = Asin(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkAsinh(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Asinh(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkAtan(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Atan(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkAtanh(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
Back to top