Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for BenchmarkRect (0.31 sec)

  1. src/math/cmplx/cmath_test.go

    	for i := 0; i < b.N; i++ {
    		Polar(complex(2.5, 3.5))
    	}
    }
    func BenchmarkPow(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Pow(complex(2.5, 3.5), complex(2.5, 3.5))
    	}
    }
    func BenchmarkRect(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Rect(2.5, 1.5)
    	}
    }
    func BenchmarkSin(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		Sin(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)
Back to top